What does a Unix timestamp represent?
A Unix timestamp shows the elapsed time since the 1970-01-01 UTC epoch as a number.
Having one time format makes logs, API responses, and system comparisons easier to reason about.
Convert dates to Unix seconds or milliseconds, or turn a timestamp back into a readable date.
Convert between dates and Unix seconds/milliseconds entirely in the browser.
A Unix timestamp counts the time elapsed since 1970-01-01 00:00:00 UTC.
The browser time zone is used.
A Unix timestamp shows the elapsed time since the 1970-01-01 UTC epoch as a number.
Having one time format makes logs, API responses, and system comparisons easier to reason about.
Many systems use second-based timestamps, while some APIs expect millisecond precision.
This tool shows both so you can quickly confirm which unit a workflow requires.
The same Unix value can display differently in different local time zones.
That is why the local date, ISO string, and numeric timestamp should be read together.