๏ปฟ
Timestamp Converter

Convert Unix timestamps instantly.

Epoch to human-readable and back. Auto-detects seconds, milliseconds, and microseconds. Timezone-aware. Everything runs in your browser.

Runs locally. Nothing is sent anywhere.

Unix time now
โ€”
Local time
โ€”
Timezone

Seconds, milliseconds, or microseconds โ€” auto-detected by magnitude.
โš ๏ธ

Not a valid timestamp.

Converted to
Enter a date, date + time, or paste an ISO 8601 string. The timezone selector above sets the context. Or paste a date string:
โš ๏ธ

Could not parse that date string.

How it works

Time as a single number.

What Unix time is

Unix time counts seconds elapsed since January 1, 1970 at 00:00:00 UTC โ€” the Unix epoch. It's timezone-independent, unambiguous, and the universal language of timestamps in logs, APIs, and databases.

Seconds vs milliseconds

Most Unix timestamps are in seconds (10 digits). JavaScript and many APIs use milliseconds (13 digits). Some high-precision systems use microseconds (16 digits). This tool detects the precision automatically by magnitude.

Timezones and bugs

Unix time has no timezone โ€” it's always UTC underneath. The confusion happens when converting for display. Storing timestamps as epoch integers and converting to local time only at the UI layer eliminates an entire class of timezone bugs.