Free Unix Timestamp Converter

Instantly convert Unix epoch timestamps to human-readable dates, or parse date strings into timestamps. Supports both seconds and milliseconds, with ISO 8601, UTC, local time, and relative output.

What is a Unix Timestamp?

A Unix timestamp (also called epoch time) is the number of seconds elapsed since January 1, 1970, 00:00:00 UTC — known as the Unix epoch. It is a simple, timezone-agnostic way to represent a moment in time, widely used in programming, databases, and APIs.

For example, the timestamp 1705305000 represents 2024-01-15T07:30:00Z. Many systems also use millisecond precision (multiply seconds by 1000), which this tool auto-detects.

How to Use

  1. Timestamp → Date: Enter a Unix timestamp in seconds (e.g. 1705305000) or milliseconds (e.g. 1705305000000). Click Convert or press Cmd/Ctrl + Enter.
  2. Date → Timestamp: Enter any date string such as 2024-01-15, 2024-01-15T08:30:00Z, or even a natural format like Jan 15, 2024.
  3. Click Now to use the current date and time.
  4. Hover over any result row to copy it instantly.

Output Formats Explained

FormatExampleDescription
Unix (s)1705305000Seconds since epoch (UTC)
Unix (ms)1705305000000Milliseconds since epoch
ISO 86012024-01-15T07:30:00.000ZInternational standard, preferred for APIs
UTCMon, 15 Jan 2024 07:30:00 GMTRFC 2822 / HTTP date format
Local01/15/2024, 03:30:00 AM ESTBrowser's local timezone
Relative3 months agoHuman-friendly relative time

Frequently Asked Questions

Seconds vs milliseconds — how do I know which I have?

A 10-digit number is almost certainly seconds (valid through year 2286). A 13-digit number is milliseconds. This tool automatically detects the precision — values greater than 10¹² (1 trillion) are treated as milliseconds.

What is the maximum Unix timestamp?

The maximum 32-bit signed integer Unix timestamp is 2147483647, representing January 19, 2038 — the famous Year 2038 problem. Modern systems use 64-bit timestamps (or milliseconds) to avoid this.

Is my data private?

Yes. All conversions run locally in your browser. No data is sent to any server.