ToolStandards

Unix Timestamp Converter

Convert epoch time to a readable date, or convert a date back to a Unix timestamp.

Convert Unix timestamps and dates

A Unix timestamp counts seconds since 00:00:00 UTC on 1 January 1970. Developers use it in logs, APIs, databases, and JWT exp/iat claims. This converter shows both local time and UTC, and supports seconds or milliseconds.

How to use

Related developer tools

FAQ

What is a Unix timestamp?

It is the number of seconds since the Unix epoch: 1970-01-01T00:00:00Z.

Seconds or milliseconds?

10-digit values are usually seconds; 13-digit values are usually milliseconds. Auto-detect covers common cases.

Why show UTC and local time?

Logs and APIs often store UTC while people read local time. Showing both reduces off-by-timezone mistakes.