Unix Timestamp Converter

Convert between Unix timestamps and human-readable dates. Seconds and milliseconds, UTC and local.

Auto-detects seconds vs milliseconds
Local timezone
Enter input above to see the result.

What is this for?

A Unix timestamp is a single integer — the number of seconds (or milliseconds) since 1970-01-01 00:00:00 UTC. They're everywhere: log files, API responses, JWT iat/exp claims, database created_at columns, cache headers. They're unambiguous and timezone-free, but not human-readable, so when something breaks at 1735689600, you need to know whether that's 2pm or 4am, today or last year. This tool flips between the integer form and the readable form in both directions, with seconds/ms auto-detection and a relative-time hint.

When to use it

Seconds, milliseconds, microseconds

Common gotchas