Monu Tools

Unix Timestamp Converter

Convert Unix timestamps to human dates and back: UTC, local, ISO 8601 and relative time. Seconds and milliseconds are auto-detected.

How to use the Timestamp

  1. 01

    Enter a Unix timestamp (seconds or milliseconds) or a date.

  2. 02

    Seconds vs milliseconds are detected automatically.

  3. 03

    Read the UTC, local, ISO and relative values, or hit Now for the current time.

What a Unix timestamp is

A Unix timestamp is the number of seconds that have elapsed since 1 January 1970 at midnight UTC, a moment known as the epoch. Because it is just a count from a fixed point in UTC, it represents an exact instant with no time zone attached, which is why logs, APIs and databases love it.

What this converter does

It turns an epoch value into a readable date and a date back into an epoch, showing the result as UTC, your local time, an ISO 8601 string and a human relative description like "3 hours ago". A Now button fills in the current time.

Seconds and milliseconds

Seconds and milliseconds are detected automatically: a 10-digit number is read as seconds and a 13-digit number as milliseconds, which covers almost everything you will paste from a log or an API response.

Why timestamps and ISO 8601

Timestamps beat formatted date strings for storage and exchange because they are unambiguous, easy to sort and independent of time zone or locale. The usual pattern is to store the timestamp and convert it to a local, formatted date only when you display it to a person.

ISO 8601 (for example 2026-06-30T14:05:00Z) is the international standard text format for dates and times; the trailing Z means UTC. The relative value is handy for quickly judging how old a log line or record is.

The Year 2038 problem and privacy

One thing to know: systems that store Unix time in a signed 32-bit integer overflow on 19 January 2038, the so-called Year 2038 problem. Modern 64-bit systems are unaffected. Everything here runs in your browser, so nothing you enter is uploaded.

Frequently asked questions

Seconds or milliseconds?

Both. 10-digit numbers are read as seconds and 13-digit numbers as milliseconds, so you can rely on auto-detection.

Which time zone is shown?

UTC and ISO 8601 are absolute. The local value uses your browser's time zone, so it matches the clock on your device.

What is the Unix epoch?

It is the reference point for Unix time: 1 January 1970 at 00:00:00 UTC. A timestamp is simply the number of seconds (or milliseconds) since then.

What is ISO 8601?

An international standard for writing dates and times as text, such as 2026-06-30T14:05:00Z. The Z indicates UTC; an offset like +02:00 indicates a specific time zone.

What is the Year 2038 problem?

Systems that store Unix time as a signed 32-bit integer run out of range on 19 January 2038. Modern 64-bit systems store it in a wider integer and are not affected.

Is anything I enter uploaded?

No. All conversions happen in your browser, so the timestamps and dates you enter never leave your device.

Sources

Embed this tool

Add this tool to your own website. Copy the snippet below; it stays up to date automatically.

<iframe src="https://monu.tools/embed/en/timestamp-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

Related tools