Timestamp Converter

Free

Convert Unix timestamps to human-readable dates and back — entirely in your browser.

Runs entirely in your browser. Nothing you enter is uploaded or stored.

Current Unix timestamp (seconds)
Right now
Timestamp → Date
Interpreting as:
Date → Timestamp
Interpret the entered date & time as:
Nothing entered here is stored or transmitted — every conversion happens entirely in your browser.

How it works

What is a Unix timestamp?

A Unix timestamp (or "epoch time") is the number of seconds that have passed since January 1, 1970, 00:00:00 UTC — a fixed reference point called "the epoch." It's a single number that unambiguously represents a specific instant in time, independent of any calendar format, locale, or timezone, which is exactly why it's so widely used in APIs, databases, and log files.

Why does my timestamp look wrong — showing 1970, or some year far in the future?

This is almost always a seconds-vs-milliseconds mix-up, and it's the single most common bug with Unix timestamps. JavaScript's Date.now() and most browser APIs use milliseconds, while many backend systems and Unix command-line tools use seconds. Treating a seconds value as milliseconds makes it look like 1970 (since the number is 1000x too small); treating a milliseconds value as seconds pushes the date thousands of years into the future. This tool auto-detects which one you likely have based on the timestamp's magnitude, with a manual override in case an edge-case value gets misread.

What does UTC mean here, versus my local timezone?

UTC (Coordinated Universal Time) is the timezone-independent reference time that a Unix timestamp is fundamentally based on — it doesn't shift for daylight saving and isn't tied to any specific region. Your "local timezone" is whatever your browser and operating system are currently configured to, which does shift with daylight saving and differs by region. The same timestamp corresponds to a different clock time in each timezone, but the same single instant — this tool shows both side by side, plus any specific timezone you choose, so you can see exactly how they relate.

Is anything entered here stored or transmitted?

No. All conversion happens locally in your browser using native JavaScript date and internationalization APIs — nothing is uploaded, logged, or transmitted.

Related tools