What this timestamp converter does
Epoch timestamps are everywhere machines record time — server logs, JWT exp claims, database rows, analytics events, API responses — but a value like 1753142400 means nothing to a human at a glance. This converter translates in both directions: timestamp to readable date (shown in your local timezone, UTC and ISO 8601) and calendar date back to epoch seconds and milliseconds.
Unit detection is automatic. JavaScript and Java tend to use milliseconds (13 digits) while Unix tools, Python and most databases use seconds (10 digits); paste either and the tool identifies which one you gave it.
How to convert a Unix timestamp
- Paste the epoch value into the left field and click Convert timestamp.
- Read the result in local time, UTC, and ISO 8601 format.
- To go the other way, pick a date and time on the right and click Convert date.
Reading timestamps in logs and tokens
When debugging, the two timestamps you decode most often are log entry times (to line events up across services — compare them in UTC, not local time) and token expiry claims (an exp in the past explains a mysterious 401). The live current-timestamp readout at the top of the panel gives you the “now” to compare against.