What is a Unix timestamp?
A Unix timestamp represents a time relative to the Unix Epoch, 1970-01-01 00:00:00 UTC. Seconds are the common POSIX-style unit, while JavaScript Date values use milliseconds internally.
What is the difference between seconds and milliseconds?
A millisecond timestamp is 1,000 times the corresponding seconds value. Choosing the wrong unit can make a date appear thousands of years away or outside the supported range.
What does UTC mean in this calculator?
UTC output describes the same instant without a local time-zone offset. Local output formats that instant using your browser/device time zone.
Can Unix timestamps be negative?
Many modern systems and JavaScript can represent dates before the Epoch with negative values, but some external systems impose narrower ranges.
Frequently asked questions
Sources and methodology
This calculator uses transparent browser-side date/time arithmetic. The references below provide standards or official context relevant to the calculation.