Developer

Unix timestamp converter

Convert a Unix timestamp to a human date and back. Seconds or milliseconds, UTC and local time, with copy. Runs in your browser — nothing is uploaded.

Direction
Unit
UTC (ISO 8601)
Local time
Relative

UTC is independent of timezone; local time uses your browser's timezone. Everything is computed in your browser — nothing is uploaded.

How to use it

A Unix timestamp counts the seconds since 1 January 1970 (the epoch), in UTC. Paste a timestamp to see the UTC and local date, or pick a date to get the timestamp back. Choose seconds or milliseconds — ten digits are usually seconds, thirteen are milliseconds. Handy for logs, APIs, databases and debugging.

Example

Input 1700000000 (seconds)
Result 2023-11-14 22:13:20 UTC

Frequently asked questions

What is a Unix timestamp?

It is the number of seconds since 1 January 1970, 00:00:00 UTC — the Unix epoch. It stores a moment in time compactly and without a timezone, so it is widely used in logs, APIs and databases.

Seconds or milliseconds?

A 10-digit value is usually seconds; a 13-digit value is milliseconds (common in JavaScript). Switch the unit to match your input — the tool converts both.

Is my data sent anywhere?

No. The conversion happens entirely in your browser; nothing is uploaded.