Convert Unix timestamps to human-readable dates and vice versa. Live clock, timezone support, ISO 8601, RFC 2822, and relative time — all in one place.
A Unix timestamp (also called POSIX time or epoch time) is the number of seconds elapsed since January 1, 1970 00:00:00 UTC. It is the universal standard for representing points in time in programming, databases, APIs, and log files.
| Format | Example | Used In |
|---|---|---|
| Unix (seconds) | 1700000000 | Most APIs, databases, C/Python |
| Unix (milliseconds) | 1700000000000 | JavaScript Date, Java |
| ISO 8601 | 2023-11-14T22:13:20Z | JSON APIs, XML, HTML datetime |
| RFC 2822 | Wed, 14 Nov 2023 22:13:20 +0000 | Email headers (Date:) |