Unix Timestamp Converter
Convert Unix timestamps to dates and dates to timestamps with timezone support.
Tool Area
Instant client-side processing
Live Unix Epoch
1772241545
Global Settings
Did you know?
Unix time is the number of seconds that have elapsed since Jan 1 1970 (UTC). It is widely used in systems to represent points in time independent of timezones.
Secure & Private
Like all our tools, timestamp conversion happens entirely in your browser. No data is sent to any server.
Epoch to Human
Decode a Unix timestamp into readable text
Human to Epoch
Encode a human-readable date into a timestamp
Enter any valid date or use the picker
Common Questions
QWhy is the date wrong by 3 years?
You likely mixed up seconds and milliseconds. If your timestamp has 13 digits, it's milliseconds. 10 digits is seconds.
QWhat is the Unix Epoch?
It is the arbitrary start date chosen by early Unix engineers (00:00:00 UTC on 1 January 1970). All Unix time counts from there.
QDoes this handle negative timestamps?
Yes. Negative numbers represent dates before 1970 (e.g., -1000 is Dec 31, 1969).
QIs it Y2038 safe?
Yes. Since JavaScript uses 64-bit floating point numbers for math, our tool handles dates well beyond the year 2038.