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.
Agent handoff
Assistants can pass an epoch value or ISO-8601 timestamp into this page with a prefilled URL. The browser shows UTC, local time, seconds, and milliseconds without making the model repeat date math.
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
- Cron expression — when a job fires on a schedule instead of one absolute instant.
- Timezone converter — when operators think in local offsets instead of UTC.
- JWT decode — to read exp/nbf/iat claims beside raw epoch values.
- ISO-8601 duration — for PnY…M…DT…H spans next to absolute timestamps.
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.
Can I share a timestamp as a prefilled Toolcore link?
Yes. Use Copy agent link after entering a value; the link opens this converter with the same Unix or ISO-8601 input already filled in.
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.