Unix Timestamp Converter
Convert Unix epoch time to a human date and back — seconds or milliseconds, local time or UTC, with ISO 8601 and relative time.
🔒 Runs entirely in your browser — nothing you type is uploaded or stored on a server.
The Unix Timestamp Converter translates epoch time into a date you can read — and turns a date back into a timestamp. Paste a number like 1700000000 and instantly see it as a full date and time, the ISO 8601 string, the day of the week and a friendly “3 months ago”. It handles seconds, milliseconds and microseconds automatically by looking at the length, so you don't have to remember which unit a log or API used.
It works both ways and in both time zones. Switch between your local time and UTC with one click; the readable date, the ISO string and the reverse conversion all follow. Pick a date and time in the calendar field and read off its exact epoch in seconds and milliseconds — handy for building a query, seeding test data or checking why a token expired.
A live clock shows the current Unix time ticking each second, one click to copy. Every value in the result has its own copy button, so grabbing just the milliseconds or the ISO string is instant. Like all Txtset tools it runs entirely in your browser — useful when the timestamps come from production logs you would rather not paste into someone else's server.
How to use
- Paste a Unix timestamp into the left field — seconds, milliseconds or microseconds are detected automatically.
- Or pick a date and time in the right field to convert the other way.
- Switch between Local time and UTC to see the moment in either zone.
- Read the full breakdown: seconds, milliseconds, ISO 8601, readable date, day and relative time.
- Copy any single value with its Copy button, or grab the live current timestamp up top.
Examples
A log shows
1700000000 — paste it to learn it was 14 Nov 2023, 22:13:20 UTC, three months ago.A 13-digit value like
1700000000000 is recognised as milliseconds and converted without you changing any setting.Pick a date in the calendar to get its exact epoch seconds to drop into a database query or API filter.
Convert a JWT's
exp claim to a readable date to see at a glance whether it has already expired.Frequently asked questions
What is a Unix timestamp?
Does it handle seconds and milliseconds?
Can it convert a date back to a timestamp?
Local time or UTC — what's the difference?
What is ISO 8601?
2023-11-14T22:13:20.000Z. It sorts chronologically as plain text and is unambiguous across systems, which is why APIs favour it.