HubTools

Unix Timestamp Converter

Convert Unix timestamps to dates and back. ISO 8601, RFC 2822, and 9 time zones at a glance.

What is a Unix Timestamp?

A Unix timestamp (also called epoch time, POSIX time, or Unix time) is the number of seconds elapsed since the Unix epoch, defined as midnight UTC on January 1, 1970. Because it is a single integer with no timezone or locale, it is the canonical format machines use to store moments in time — you'll find it in API responses, database columns, log lines, JWT claims, HTTP headers, and almost every programming language's standard library. Two flavors are common: seconds (10-digit) and milliseconds (13-digit, used by JavaScript's Date.now()). This converter accepts either, auto-detects the unit, and renders the date in ISO 8601, RFC 2822, and nine popular time zones. Pair it with the Age Calculator for date arithmetic or the JSON Formatterwhen you're inspecting timestamp fields in API payloads.
Unix Timestamp Converter
Timestamp
Unit
Detected: seconds
just now
Current Unix Time
Seconds

1778484548

Milliseconds

1778484548274

Converted
ISO 8601
2026-05-11T07:29:08.000Z
RFC 2822 (UTC)
Mon, 11 May 2026 07:29:08 GMT
Local
Mon May 11 2026 07:29:08 GMT+0000 (Coordinated Universal Time)
In popular zones
UTC
May 11, 2026, 07:29:08
New York (EST/EDT)
May 11, 2026, 03:29:08
Los Angeles (PST/PDT)
May 11, 2026, 00:29:08
London (GMT/BST)
May 11, 2026, 08:29:08
Berlin (CET/CEST)
May 11, 2026, 09:29:08
Mumbai (IST)
May 11, 2026, 12:59:08
Singapore (SGT)
May 11, 2026, 15:29:08
Tokyo (JST)
May 11, 2026, 16:29:08
Sydney (AEST/AEDT)
May 11, 2026, 17:29:08

How to use this tool

  1. 1
    Paste your timestamp
    Drop a 10-digit (seconds) or 13-digit (milliseconds) value into the input. Auto-detect picks the right unit.
  2. 2
    Read the converted formats
    ISO 8601 (UTC), RFC 2822, and your local time render instantly. Click any value to copy it.
  3. 3
    Compare across time zones
    Scroll to see the same moment in nine major zones — useful when coordinating logs or scheduling.
  4. 4
    Grab the current timestamp
    The live counter shows seconds and milliseconds ticking now. Click the refresh icon in the input to use it.

Frequently asked questions

What is a Unix timestamp?
A Unix timestamp is the number of seconds elapsed since 1970-01-01 00:00:00 UTC, ignoring leap seconds. It's the canonical way machines store moments in time because the value is timezone-independent and trivially comparable. Most APIs, databases, and log formats use it.