Free developer time converter

Unix Epoch Timestamp Converter

Convert Unix epoch seconds or milliseconds into local time, UTC, ISO format, and convert a chosen date and time back into epoch timestamps.

  • Epoch seconds
  • Milliseconds
  • UTC and local
  • ISO timestamps

Timestamp input

Convert epoch to readable time

Unix timestamps are timezone-neutral numbers. Time zone only matters when the timestamp is displayed as a human-readable date.

Readable result

Epoch breakdown

Epoch seconds0
Local time
-
UTC time
-
ISO timestamp
-
Relative to now
-

Reverse converter

Convert date and time to epoch

Choose a local date and time to generate Unix epoch seconds, epoch milliseconds, and UTC output for scripts, logs, and API testing.

Epoch seconds
-
Epoch milliseconds
-
UTC time
-
Local time
-

How Unix epoch timestamps work

A Unix epoch timestamp counts time from January 1, 1970 at 00:00:00 UTC. System logs, databases, APIs, cloud dashboards, authentication events, and scheduled jobs often use epoch values because they are compact and timezone-neutral.

Epoch seconds are common in Linux and server logs. Epoch milliseconds are common in JavaScript because the browser `Date` object stores time internally in milliseconds.

Seconds vs milliseconds

If a timestamp looks like ten digits, it is probably epoch seconds. If it looks like thirteen digits, it is probably epoch milliseconds. Choosing the wrong unit can shift the displayed date wildly, which is one of the most common timestamp debugging mistakes.

This converter lets you choose the unit explicitly so you can check both interpretations while debugging.

UTC, local time, and ISO format

The timestamp itself does not store your time zone. UTC output is useful when comparing server logs across systems. Local output is useful when matching an event to what a person saw on their clock.

ISO timestamps are especially useful in APIs and documentation because they include a predictable date and time format. A trailing `Z` means the ISO timestamp is expressed in UTC.

Common timestamp mistakes

Common mistakes include mixing seconds and milliseconds, comparing UTC server logs to local screenshots without applying the time zone difference, and assuming daylight saving time rules were the same for every date. When troubleshooting, keep the original timestamp, UTC time, and local time together.