Convert Unix timestamps to dates and dates to timestamps — with timezone support
Convert Unix timestamps to human-readable dates and times in any timezone, or convert any date and time to its Unix timestamp equivalent. The live clock displays the current timestamp in real-time. Essential for developers working with APIs, databases and log files.
Current Unix timestamp updates in real-time with UTC and local time display.
Convert timestamps in 18+ major timezones from UTC to Tokyo.
ISO 8601, UTC string, local string, day of week, week number, relative time and more.
Calculate the exact difference between any two timestamps in days, hours, minutes and seconds.
Click any result to copy it to clipboard instantly.
Handles timestamps in seconds, milliseconds, microseconds and nanoseconds.
Always store timestamps as Unix integers (seconds or milliseconds) in databases — never as formatted strings. Integers are timezone-independent, sortable, comparable with arithmetic, and take less storage space than string representations.
| Description | Unix Timestamp | Date | Notes |
|---|---|---|---|
| Unix Epoch | 0 | 1970-01-01 00:00:00 UTC | The beginning |
| Y2K | 946684800 | 2000-01-01 00:00:00 UTC | The millennium bug |
| 1 billion seconds | 1000000000 | 2001-09-09 01:46:40 UTC | Celebrated by Unix nerds |
| 2 billion seconds | 2000000000 | 2033-05-18 03:33:20 UTC | Future milestone |
| Y2K38 | 2147483647 | 2038-01-19 03:14:07 UTC | 32-bit overflow |
| 3 billion seconds | 3000000000 | 2065-01-25 05:20:00 UTC | Far future |
| 64-bit overflow | 9.2 × 10^18 | Year 292,277,026,596 | Not a concern |