What is a Unix timestamp?
A Unix timestamp is a number representing time elapsed since January 1, 1970 at 00:00:00 UTC.
Developer Tools
Convert Unix timestamps to readable dates and dates back to timestamps.
Inspect API timestamps, log values, and database date fields by converting between Unix seconds, milliseconds, local time, UTC, and ISO strings.
Convert Unix timestamps to readable dates and local dates back to timestamps.
// Timestamp results will appear here. Paste Unix seconds or milliseconds and convert it to readable dates.
Choose a local date and time to get Unix seconds and milliseconds.
Use local, UTC, ISO, seconds, or milliseconds output as needed.
`0` converts to `1970-01-01T00:00:00.000Z`, the Unix epoch.
A Unix timestamp is a number representing time elapsed since January 1, 1970 at 00:00:00 UTC.
Unix seconds count whole seconds, while milliseconds count thousandths of a second. Many JavaScript APIs use milliseconds.
Local time output and date input use your browser's local timezone. UTC and ISO output are timezone-independent.