Unix Timestamp Converter
Convert epoch timestamps to human-readable dates — or any date back to a Unix timestamp. Live current time included, milliseconds supported.
Current Unix timestamp
UTC
Your local time
ISO 8601
Relative
Milliseconds
Day of week
Unix (seconds)
Unix (milliseconds)
How to use
Timestamp → Date: Paste any Unix timestamp (seconds or milliseconds — both are detected automatically). You'll see the UTC time, your local time, ISO 8601 format, relative time, and day of the week.
Date → Timestamp: Pick a date and time in the date picker. The converter outputs both seconds and milliseconds. Use Set to now to get the current moment.
Current timestamp: The live counter at the top always shows the current Unix second. Click Use now to convert it immediately.
Use cases
- Decoding
iatandexpfields from JWT tokens - Converting log file timestamps to understand when an event occurred
- Setting database TTL (time-to-live) values or scheduled event triggers
- Calculating how many seconds until a deadline for a countdown
- Verifying API response timestamps in integration testing
Limitations
Local time display depends on your browser's timezone setting. The UTC output is always reliable regardless of locale.
Dates before 1 January 1970 (negative timestamps) are not supported by this tool. For historical date arithmetic use a dedicated library like Temporal or date-fns.