Unix Timestamp Converter
Convert Unix timestamps to human-readable dates and back — supports seconds and milliseconds.
About this tool
Unix timestamps represent a point in time as the number of seconds (or milliseconds) elapsed since 00:00:00 UTC on January 1, 1970 (the Unix epoch). This converter translates between Unix timestamps and ISO 8601 dates in both directions, and also shows the current timestamp live.
Timestamps are the backbone of logging, APIs, databases, and system programming. Converting them to human-readable form is a daily task for developers debugging events, interpreting log files, or understanding JWT expiry times (which use exp as a Unix timestamp in seconds). This tool auto-detects whether your input is in seconds (10 digits) or milliseconds (13 digits).
Output includes: ISO 8601 UTC string, local datetime string using your browser's timezone, relative time ("3 hours ago"), day of week, and the Julian Day Number. All computation uses the browser's Date API — no network call, no timezone database server, no external dependencies. The current timestamp updates every second so you can copy a live value at any moment.