Timestamp ↔ Date Converter

Convert Unix timestamps to human-readable dates and back. Supports ISO 8601, RFC 2822, UTC, and local timezone.

Free Always No Account Needed 100% Client-Side

Current Unix Timestamp

1786100040

Could not parse date. Try a Unix timestamp (e.g. 1716239022) or ISO date (e.g. 2024-05-20T12:00:00Z).
Advertisement

How to use Timestamp ↔ Date Converter Online

  1. 1
    Input Data or ParametersPaste your input string, code payload, or select parameters into the editor.
  2. 2
    Instant Local ComputationThe tool processes your request in real-time inside your browser using client-side JavaScript.
  3. 3
    Copy or Export OutputCopy the formatted result to your clipboard or download the output payload instantly.

About this tool

Timestamps are everywhere in software — API responses, database fields, log files, JWT claims. This tool converts between different timestamp formats instantly.

Unix timestamp (epoch seconds/milliseconds) ↔ ISO 8601 (2024-01-15T09:30:00Z) ↔ RFC 2822 (Mon, 15 Jan 2024 09:30:00 +0000) ↔ Human-readable (Monday, January 15, 2024 at 9:30 AM UTC)

Enter a timestamp in any format and all other representations update in real-time. A live clock shows the current timestamp so you can quickly compare relative times.

Supports timezone conversion — see what a UTC timestamp looks like in New York, London, Tokyo, or your local timezone. Also handles JavaScript's millisecond timestamps (13-digit numbers) automatically.

Advertisement

Frequently Asked Questions

What is a Unix timestamp?
Unix timestamp (or epoch time) is the number of seconds that have elapsed since January 1, 1970 at 00:00:00 UTC.
Why does my JavaScript timestamp have 13 digits?
JavaScript uses milliseconds since epoch, not seconds. Divide by 1000 to get the Unix timestamp in seconds.
What is ISO 8601?
ISO 8601 is an international standard for representing dates and times. Example: 2024-01-15T09:30:00Z (the Z means UTC).
How do I get the current Unix timestamp?
Click the 'Now' button or run Math.floor(Date.now() / 1000) in your browser console.

Related Tools