How to use this developer tool
- Enter a Unix value or date string.
- Select the unit or use automatic detection.
- Provide an IANA timezone for an additional display.
- Copy the conversion report.
Convert Unix timestamps in seconds or milliseconds to UTC, local, ISO 8601, RFC, SQL, and relative-time formats.
The converter normalizes the input to milliseconds and produces common date formats and programming-language examples.
Very large microsecond or nanosecond values require BigInt handling and may exceed JavaScript Date limits.
The input 1783742400 is interpreted as Unix seconds and converted to readable date formats.
Interpret the timestamp as seconds or milliseconds and format the resulting Date.
Ten-digit modern values are commonly seconds and thirteen-digit values are commonly milliseconds.
Parse the date and divide its millisecond value by 1000.
Yes. Negative Unix timestamps represent dates before the Unix epoch.
Create a Date from the timestamp and call its ISO formatting method.
| Format | Use |
|---|---|
| ISO 8601 | APIs and storage |
| RFC / HTTP date | Web protocols |
| SQL datetime | Database display |