Turn Unix seconds, Unix milliseconds, or ISO 8601 strings into aligned formats: UTC ISO, local time, epoch values, and your browser’s IANA time zone. Parsing runs locally — nothing is uploaded.
No file loaded
Auto treats integers with 13 or more digits (absolute value) as milliseconds; shorter integers default to seconds. Switch to Milliseconds if you paste a 10-digit millisecond value (rare).
Unix time counts seconds (or milliseconds) since the UTC epoch 1970-01-01T00:00:00.000Z. APIs, databases, and JWT
exp claims often use integer seconds or milliseconds. JavaScript Date stores time as milliseconds since the same epoch, which is why this tool can convert
between numeric and human-readable forms without a server.
UTC is the universal baseline. Your browser’s local display depends on the system time zone and daylight saving rules. This tool shows both ISO strings in
UTC and a formatted string in your local zone, plus the IANA name (for example America/New_York) reported by Intl APIs.
DroidXP’s Timestamp Converter parses the first non-empty line of your input. You can paste Unix integers (with optional negative values for times before 1970), ISO 8601
strings, or many date strings accepted by Date.parse. It fills UTC ISO, local toString(), Unix seconds (truncated),
Unix milliseconds, a locale long label, and your UTC offset for that instant.
JavaScript Date has a finite range (roughly ±270,000 years from the epoch). Very large integers may produce Invalid Date. For sub-millisecond precision or
calendar math across historical calendar reforms, use specialized libraries or server-side tools.
No. Conversion uses your browser’s Date object only. For sensitive logs, still follow your organization’s policies on using web tools.
APIs mix seconds (10 digits today) and milliseconds (13 digits). Use Auto for typical values, or switch to Seconds or Milliseconds explicitly when you know which format your log produced.
UTC is fixed; local applies your system time zone and DST. The same instant is shown in both — only the representation changes.
The string may not be valid for Date.parse, or a numeric value may be out of range. Check for typos, missing Z or offset in ISO strings, or wrong units on integers.
Forms like 2024-01-15T12:00:00.000Z or with a numeric offset 2024-01-15T12:00:00+01:00 are common. Browser support varies slightly for edge cases; prefer ISO
strings from your own systems for reliable round-trips.
Log files often contain one timestamp per line. The tool focuses on the first non-empty line so you can drop a snippet without editing. For many lines, run the file through a script or split it first.
No. Results use your device’s clock and time zone. Compare with UTC or server logs when debugging distributed systems.