Enter an epoch or pick a datetime.
Enter an epoch or pick a datetime.
Unix timestamps are a compact way to store dates in logs, APIs, databases, and debugging output. Seconds since 1970 are easy for machines to compare, sort, and transmit, while this converter makes the value readable for humans again.
A 10-digit timestamp usually means seconds, while a 13-digit value often means milliseconds from JavaScript or browser code. When converting back to a date, remember that the epoch itself is UTC, even if your local display shows a different wall time.
Unix time is usually seconds since 1 January 1970 UTC. JavaScript Date.now() returns milliseconds — divide by 1000 if your log line has 13 digits.
Epoch values are UTC-based. When converting to local wall time, your browser applies your current timezone and DST rules.
Convert between human-readable dates and Unix epoch values for log analysis, API debugging, and database timestamps.
Values you enter stay in the browser session.