Timestamp Converter

Runs in browser

Convert Unix timestamps to dates and back instantly.

Convert Unix timestamps (seconds or milliseconds) to human-readable dates and back. Supports ISO 8601 and common date string formats.

Timestamp Converter tool

Current Unix Timestamp

1779872846

Timestamp → Date

2026-05-27T09:07:26.000Z

ISO 8601: 2026-05-27T09:07:26.000Z

RFC 1123: Wed, 27 May 2026 09:07:26 GMT

Local: Wed May 27 2026 09:07:26 GMT+0000 (Coordinated Universal Time)

Unix (s): 1779872846

Unix (ms): 1779872846000

UTC: May 27, 2026, 9:07:26 AM

Relative: 1 second ago

Date string → Timestamp

🔒 Runs in your browser · No uploads · Your data never leaves your device

How to use

  1. Timestamp to date

    Enter a Unix timestamp and choose seconds or milliseconds. The ISO date is shown.

  2. Date to timestamp

    Enter a date string (e.g. 2024-01-15 or Jan 15, 2024). Get milliseconds and seconds.

  3. Copy values

    Use Copy next to any result to copy it.

Common use cases

  • Debugging API timestampsConvert Unix timestamps from API responses to human-readable dates to verify event timing.
  • Inspecting JWT claimsConvert exp and iat claims from JWT tokens to readable dates to check token validity windows.
  • Working with log filesConvert epoch timestamps from server logs to local times for incident analysis.
  • Cross-timezone date verificationConvert a timestamp to multiple timezones to confirm scheduling logic works correctly across regions.

Examples

  • Seconds to date

    1640000000 seconds.

    Input
    1640000000
    Output
    2021-12-20T...

Frequently asked questions

Seconds vs milliseconds?
Unix time can be in seconds (10 digits) or milliseconds (13 digits). Use the checkbox to interpret correctly.
What date formats are supported?
Any format that JavaScript's Date() accepts: ISO 8601, localized strings, etc.

Key concepts

Unix timestamp
The number of seconds elapsed since January 1, 1970 00:00:00 UTC — a universal way to represent a point in time.
Epoch
The reference point (January 1, 1970 UTC) from which Unix timestamps are measured.
ISO 8601
An international date/time format standard, e.g. 2026-04-09T12:00:00Z, widely used in APIs and databases.

You might find these useful too.

More timestamp tools