⏱️ Timestamp Converter
Unix timestamp ↔ UTC time · Auto‑detects seconds/milliseconds · Bidirectional
Unix timestamp ↔ UTC time · Auto‑detects seconds/milliseconds · Bidirectional
Unix timestamp is the standard way computers record time – the number of seconds since January 1, 1970 (UTC/GMT midnight). ng.cc's timestamp converter supports automatic detection of second‑based (10‑digit) and millisecond‑based (13‑digit) timestamps, converts to UTC and back, all without leaving your browser. No server‑side processing, complete privacy.
Timestamp → UTC / UTC → timestamp. One‑click conversion and copy results.
10 digits → seconds; 13 digits → milliseconds. Result clearly labelled.
All calculations are based on UTC, free from timezone confusion. Perfect for server logs, global teams.
All conversion runs in your browser – your data never leaves your device.
10‑digit timestamp: unit = seconds, Unix standard. e.g., 1700000000 → 2023-11-15 06:13:20 UTC.
13‑digit timestamp: unit = milliseconds, returned by JavaScript Date.now(). e.g., 1700000000000 → 2023-11-15 06:13:20.000 UTC.
Unix epoch 1970-01-01 00:00:00 UTC is an absolute moment, independent of timezone. Using UTC ensures that everyone, anywhere, gets the same result. This tool always works in UTC; you can manually add your timezone offset if needed.
32‑bit systems store timestamps as signed 32‑bit integers, maxing out at 2038-01-19 03:14:07 UTC. 64‑bit systems have no such limit. This converter supports 64‑bit timestamps.
1700000000 converts to 2023-11-15 06:13:20 UTC. If you are in Beijing (UTC+8), the local time is 2023-11-15 14:13:20. Just add your offset mentally, or use a timezone converter.
Math.floor(1700000000000 / 1000) = 1700000000. Our result area always shows both formats.
-1000000000 converts to 1968-04-28 15:33:20 UTC.
2023-11-15T06:13:20Z (the Z indicates UTC). This tool outputs in the more human‑friendly YYYY-MM-DD HH:mm:ss UTC format, which you can copy directly.
date -d @timestamp.
This timestamp converter is part of the ng.cc developer toolkit. You might also like:
⚡ All conversions happen locally – your timestamps never leave your browser.