Inspect JWT timestamps
Convert exp, iat, and nbf claims into readable dates while debugging tokens.
Free browser tool
The Unix timestamp converter translates Unix time into readable UTC and local dates. It also converts date strings back into seconds and milliseconds since the Unix epoch.
Timestamps appear in logs, JWT claims, API payloads, databases, analytics exports, and scheduling systems. This tool makes those values easier to inspect while debugging.
Convert Unix timestamps and date strings.
Unix timestamps represent time as a number counted from January 1, 1970 UTC. They appear in logs, databases, JWT claims, monitoring events, analytics exports, and API responses. The number is compact, but it is not easy to read directly.
This converter turns timestamps into UTC and local dates, and turns date strings back into timestamp values. It reports seconds and milliseconds because different systems use different units.
Convert exp, iat, and nbf claims into readable dates while debugging tokens.
Turn numeric log timestamps into local or UTC times.
Create timestamp values for fixtures and API examples.
A compact numeric timestamp becomes a readable ISO date once the unit is interpreted correctly.
17785296002026-05-11T12:00:00.000ZA 10-digit value is usually seconds; a 13-digit value is usually milliseconds.
UTC and local time can show different dates depending on timezone offset.
Ambiguous date strings can parse differently across environments.
Read timestamps from logs and APIs.
Convert JWT exp and iat claims.
Prepare timestamps for tests and examples.
Use UTC timestamps in APIs and databases to avoid timezone ambiguity.
Document whether a field expects seconds or milliseconds.
ISO dates are easier for humans to inspect than raw timestamp numbers.
Unix timestamps count time from the Unix epoch, but seconds, milliseconds, and timezones often cause confusion.
JWTs are common in authentication. Learn what the three sections mean and why decoding is not verification.
API responses are easier to debug when you validate syntax, format payloads, inspect errors, and compare changes deliberately.
Unix timestamps often use seconds, while JavaScript timestamps use milliseconds. This tool reports both.
The output includes UTC and your browser's local timezone representation.
Yes. Date strings that JavaScript can parse can be converted.
The tool runs in your browser and does not require login, a database, or server-side processing.