My Tool Studio
Developer

Unix Timestamp Converter

Somewhere in a log file there's a number like 1719912345, and you need to know what moment it refers to. This unix timestamp converter changes values both ways: paste epoch seconds to get UTC, local, and ISO 8601 forms, or type an ISO date to get seconds and milliseconds back. A live clock shows the current Unix time, updating every second with one-click copy in either unit. It's the epoch converter to reach for when a database row, a JWT claim, or an API response hands you raw seconds and you want unix time to date conversion without doing timezone arithmetic in your head.

Always freeNo sign upRuns in your browser
Current Unix time
1788671481
Sun, 06 Sep 2026 05:11:21 GMT

Unix timestamp → date

UTCSun, 06 Sep 2026 05:11:21 GMT
LocalSun Sep 06 2026 05:11:21 GMT+0000 (Coordinated Universal Time)
ISO 86012026-09-06T05:11:21.000Z

Date → Unix timestamp

Seconds1788671481
Milliseconds1788671481000

How to use

01

Grab the current time

The top card shows live Unix time ticking every second. Copy it in seconds or milliseconds depending on what your API or database column expects.

02

Convert a timestamp to a date

Paste epoch seconds into the Unix timestamp field. You instantly get the UTC string, your local time, and the ISO 8601 form, each with its own copy button.

03

Convert a date to a timestamp

Type an ISO date such as 2026-05-26T12:00:00 into the date field and read off the equivalent value in both seconds and milliseconds.

Why Unix Timestamp Converter

Common questions

How do I tell seconds from milliseconds in a timestamp?
Count digits. Current-era epoch values have 10 digits in seconds and 13 in milliseconds. If a conversion lands you in the year 56,000 or so, you fed milliseconds into a seconds field.
Why does a timestamp to date online result differ from my log?
Your log almost certainly printed local time while the epoch value is timezone-free. Compare against the UTC row first, then apply your zone's offset, and the gap should equal that offset exactly.
What date does epoch 0 convert to?
1970-01-01T00:00:00Z, the starting point of Unix time. Every epoch value is just the count of seconds before or after that instant.
Does the epoch to human date conversion respect my timezone?
You get both: a UTC row that's the same for everyone and a Local row rendered in your browser's configured timezone. Comparing the two is a quick way to confirm your machine's offset.
Can I convert dates from before 1970?
Yes. Moments before the epoch are simply negative second counts, and JavaScript's Date type handles them, so a value like -86400 resolves to the last day of 1969.
Is Unix time affected by leap seconds?
No. Unix time pretends every day has exactly 86,400 seconds, which keeps the math simple. The tradeoff is that epoch arithmetic can drift a second from atomic time, which almost no application cares about.
Which timezone do the converted local values use?
Whatever your operating system and browser report. Change your system timezone and reload, and the Local row shifts accordingly while UTC and the epoch value stay fixed.
How do I convert a timestamp to a date on this page?
Paste epoch seconds into the Unix timestamp field and you instantly convert timestamp to date in three forms: the UTC string, your local time, and ISO 8601. Nothing needs a button press; the rows update as you type.
Does the timestamp converter update without a button?
Yes. The timestamp converter is live, so to convert timestamp to date online you just paste the number and read the rows. Each row has its own copy button for grabbing the exact format you need.
Is this timestamp converter online tied to a specific language?
No. As a timestamp converter online it reads epoch seconds and renders the date, so the result matches what any language computes from the same number, whether it came from Python, Go, or a database column.
Does the unix time converter also read a date back to a number?
Yes. The unix time converter shows a date from epoch seconds, and the second card reverses it, so it doubles as a unix date converter that turns an ISO date back into seconds and milliseconds.
Can I convert epoch time to date in UTC and a readable form?
Yes. Feed epoch seconds in and you convert epoch time to date across three views: a UTC row identical for everyone, your local row, and ISO 8601. The UTC row answers most debugging questions on its own.
How does the epoch to utc converter differ from the human date view?
The epoch to utc converter gives you the exact UTC timestamp string, while the epoch to human date converter turns a bare number like 1719912345 into a date and time you can read at a glance. Both come from the same input row.
How do I convert a timestamp to a datetime or back to unix time?
Both directions live on the page. Paste epoch seconds to convert timestamp to datetime as a full UTC or ISO string, or type an ISO date into the second card to convert timestamp to unix time in seconds and milliseconds. The two cards mirror each other.
Does the utc time converter always show a fixed UTC value?
Yes. The UTC row never shifts with your machine's timezone, which is the point of a utc time converter. Reading your local row against it works as a time to utc converter too, since the gap between the two rows is exactly your current offset.
Can I use this as a plain time converter for a single value?
Sure. Drop one epoch value in and read the clock time from the UTC or local row; as a time converter that's all it takes, with no setup required.
Does the time converter online show only the time part?
It shows the full date and time, but as a time converter online you can read just the hour and minute from any row. That also makes it a timestamp to time converter when the clock time is all you're after.
Is there a date converter for going from a calendar date to epoch?
Yes, the second card is that date converter: type an ISO date like 2026-05-26T12:00:00 and it returns the value in seconds and milliseconds. As a date converter online it saves the timezone arithmetic you'd otherwise do by hand.

More Developer tools

View all