All tools · Developer

Unix timestamp converter

Timestamps to dates and dates to timestamps. Values with 13 or more digits are read as milliseconds.

Now (seconds)

—

Timestamp → date

Date → timestamp

—

How to use

  1. Enter a timestamp to see the date and time in several zones.
  2. Pick a date, time and zone to get the timestamp in seconds and milliseconds.
  3. The current timestamp at the top updates every second.

Questions

What is a Unix timestamp?

Seconds since 1970-01-01 00:00:00 UTC. The same moment has the same value in every time zone.

Seconds or milliseconds?

13 digits or more is read as milliseconds; fewer as seconds. JavaScript's Date.now() is in milliseconds.

What about the year 2038 problem?

Systems storing seconds in a signed 32-bit integer overflow on 19 January 2038. This tool uses 64-bit numbers and is not affected.

Are leap seconds counted?

Unix time ignores leap seconds, and so does this tool.

Is anything saved?

No. It is calculated in your browser.

Related tools

All tools