Unix timestamp converter
ClientParse Unix seconds or milliseconds, or paste an ISO-8601 string—see UTC ISO, local time, and both epoch forms. Use Now for the current instant. Everything stays in your browser.
Using this page
Type or paste one value in the main field: plain digits (epoch), digits with a . fractional part, or a full ISO-8601 string. The panel below shows UTC and local interpretations plus copy buttons—use them when filing tickets or pasting into configs next to UUID or JWT decode workflows.
Unix timestamp & time
?
Seconds vs milliseconds: values with absolute value ≥ 1e11 are treated as milliseconds; smaller magnitudes are treated as seconds.
ISO strings are parsed with your browser's Date implementation. No data is sent to our servers.
2023-11-14T22:13:20.000Z
Nov 14, 2023, 10:13:20 PM (UTC+00:00)
1700000000
1700000000000
Enter seconds, milliseconds, or an ISO-8601 string—conversion runs locally.
Nearby workflows on Toolcore
- Timezone converter — when logs are UTC but operators reason in local offsets.
- JWT decode — to read exp and iat claims beside raw epoch fields.
- Cron expression — to line up the next scheduled run with calendar time.
- ISO-8601 duration — for PnYnMnDTnH intervals next to absolute instants.
Common use cases
- Convert API logs from Unix epoch to readable UTC and local dates.
- Check whether a timestamp is in seconds or milliseconds before storing it.
- Verify expiration fields when debugging sessions, tokens, or cache keys.
Common mistakes to avoid
Mixing seconds and milliseconds
A 10-digit epoch usually means seconds; a 13-digit epoch usually means milliseconds.
Comparing local and UTC without context
Use UTC for storage and machine comparison; use local time only for display.
Assuming ISO text always includes timezone
If timezone is missing, parsing may differ by environment. Prefer full ISO-8601 with Z or an offset.
FAQ
How can I tell if my epoch value is seconds or milliseconds?
Check the length first: 10 digits is usually seconds and 13 digits is usually milliseconds. If your converted date lands far in the future or past, you likely used the wrong unit.
Should I store timestamps in UTC or local time?
Store canonical values in UTC (epoch or ISO with timezone). Convert to local time only in the UI so data stays consistent across regions.
Does this converter send my timestamps to a server?
No. This page runs in your browser tab, so your input stays local to your device.
Common search terms
Phrases people search for that match this tool. See the full long-tail keyword index.
- unix timestamp converter
- epoch to date converter
- convert milliseconds to iso 8601
- timestamp to utc local online
More tools
Related utilities you can open in another tab—mostly client-side.
ISO-8601 duration
ClientParse P…/PT… into labeled parts and plain English, or build normalized duration strings—local only.
World clock & time zones
ClientCompare IANA time zones side by side with the same instant—no server round-trip.
MongoDB ObjectId
ClientParse 24 hex ids into Unix time, machine, pid, and counter—or generate new 12-byte ObjectIds locally.
Cron expression helper
ClientHuman-readable schedule, next run times—standard 5-field cron in your browser.