Tested tool guide
Tested browser tools
Checked August 16, 2026
What Epoch Converter does, with a checked example
Epoch Converter translates numeric Unix timestamps into calendar dates and converts calendar dates back into epoch values. It retains milliseconds and can present or interpret the date in a chosen timezone. The most common mistake is confusing seconds with milliseconds: a timestamp expressed in milliseconds is 1,000 times the corresponding seconds value. Timezone selection affects the displayed or entered calendar time, but an epoch timestamp itself identifies the same instant worldwide.
Worked example
A concrete input and expected output from the current implementation.
Input
Timestamp: 0; timezone: UTC
->
Expected output
1970-01-01T00:00:00.000Z
Unix timestamp zero is the Unix epoch, midnight at the start of January 1, 1970 in UTC. The .000 portion records zero milliseconds, and Z denotes UTC.