How to use this developer tool
- Paste or type a value in the input area.
- Choose the conversion option when one is available.
- Select Convert Milliseconds or press Ctrl/Cmd + Enter.
- Review the interpretation and copy or download the result.
Convert Unix milliseconds to readable UTC, ISO, and local date forms, or turn a date string back into a millisecond timestamp. This is the timestamp unit returned by Date.now() and many browser APIs. The tool keeps the milliseconds visible, reports the corresponding Unix seconds, and rejects values beyond the range JavaScript Date can represent.
Unix milliseconds count elapsed thousandths of a second since the Unix epoch. The same instant can display as different clock times in UTC and the browser’s local zone.
A date string without an explicit zone may be interpreted in the browser’s local timezone. Include Z or a numeric offset when the instant must be portable.
Try the sample input, then run the converter. The output panel reports the normalized value and the fields used to derive it.
1784435400123
Validate an integer for timestamp mode or parse a date in reverse mode, then construct one Date and derive all displayed forms from its epoch value.
A date string without an explicit zone may be interpreted in the browser’s local timezone. Include Z or a numeric offset when the instant must be portable.
Use the format shown in the sample. The parser rejects empty input and reports malformed values instead of guessing silently.
UTC and offset-aware values represent a fixed instant. Any output labeled local uses the timezone configured in your browser.
The output is copy-ready, but verify it against the date library and runtime used by your application, especially for legacy formats.
Browsers may ship different timezone database versions and may parse non-standard legacy date strings differently. Prefer explicit standard formats.
No. The conversion runs in this page with browser APIs and does not require a network request.
| Value | Meaning |
|---|---|
| UTC | Coordinated Universal Time |
| Unix epoch | 1970-01-01T00:00:00Z |
| ISO 8601 | International date and time notation |