Skip to content

Unix Timestamp Converter

How to Convert a Unix Timestamp to a Date

A Unix timestamp is the number of seconds since 1 January 1970 (UTC). Paste a timestamp below to turn it into a readable date, or pick a date to get its timestamp.

Convert a timestamp

Current Unix time

1782232359

UTC

Tue, 23 Jun 2026 16:32:39 GMT

Your local time

6/23/2026, 4:32:39 PM

ISO 8601

2026-06-23T16:32:39.000Z

Steps to convert a timestamp

  • Paste your Unix timestamp (e.g. 1700000000) into the tool above.
  • Read the converted date and time.
  • To go the other way, enter a date and copy its timestamp.

Seconds vs milliseconds

Unix timestamps are usually in seconds (10 digits today), but JavaScript and some APIs use milliseconds (13 digits). If a converted date looks thousands of years off, your value is probably in milliseconds — drop the last three digits to get seconds.

Frequently asked questions

What is a Unix timestamp?

It's the count of seconds since the Unix epoch, 00:00:00 UTC on 1 January 1970. It's a compact, timezone-free way to store a moment in time.

Is the date shown in my timezone?

The converter shows the date in your local timezone as well as UTC, so you can read it whichever way you need.

Related