Convert epoch time to a readable date, or convert a date back to a Unix timestamp.
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.
It is the number of seconds since the Unix epoch: 1970-01-01T00:00:00Z.
10-digit values are usually seconds; 13-digit values are usually milliseconds. Auto-detect covers common cases.
Logs and APIs often store UTC while people read local time. Showing both reduces off-by-timezone mistakes.