What does auto unit detection do?
It estimates the unit from the number length and magnitude. Choose the explicit unit when precision is known.
Unix timestamps appear in logs, queues, analytics exports, cache records, job schedulers, API payloads, JWT claims, and database rows. This converter accepts seconds, milliseconds, microseconds, and nanoseconds, then shows the date as local time, UTC, ISO 8601, relative time, weekday, and copy-ready numeric values.
Auto-detection uses the size of the number to infer the unit, but you can force the unit when a value comes from a system with known precision. The date input works in the other direction when you need a timestamp for tests or manual API calls.
Loading tool...
The most common timestamp bug is a unit mismatch. Unix timestamps are often seconds in backend systems and JWT claims, while JavaScript Date uses milliseconds. A value that looks far in the future or near January 1970 is often using the wrong unit.
It estimates the unit from the number length and magnitude. Choose the explicit unit when precision is known.
Logs and APIs often store UTC, while people reason in local time. Seeing both prevents timezone mistakes.
Yes. Use the local date and time input to get seconds and milliseconds for that moment.