Epoch Time Converter

Convert Unix Timestamp to Date

Input

Convert between Unix Epoch Timestamps (seconds/millis) and human-readable dates.

Terminal

Console ready. Execute a command to see output...

About Epoch Time Converter

Time is a Number

In computing, time often starts at January 1, 1970 (UTC). This is the "Unix Epoch". The timestamp is simply the number of seconds that have passed since then.

The Year 2038 Problem

32-bit systems will run out of seconds on January 19, 2038. This is the "Y2K" of our generation. Most modern systems (64-bit) are already safe until the universe likely ends.

How to use Epoch Time Converter

  1. Pick the mode
    Timestamp → Date if you have a number, Date → Timestamp if you have a date string.
  2. Enter the value
    Timestamp: digits only (seconds or milliseconds). Date: any format JavaScript Date accepts (ISO 8601, short date, full string). Optional Set Local Time / Set UTC Time buttons prefill the current moment.
  3. Hit Convert
    Timestamp → Date shows ISO, UTC, and your local time. Date → Timestamp shows both seconds and milliseconds.
  4. Copy what you need
    Each line is selectable in the terminal panel. Match the format your downstream system expects.

Frequently Asked Questions

The number of seconds (or milliseconds, in some APIs) since midnight UTC on January 1, 1970. It is the standard way computers represent a point in time, language-agnostic, time-zone-free, easy to compare and do arithmetic on.