Financial CalculatorsDate & Time CalculatorsHealth CalculatorsMath CalculatorsLength ConvertersWeight ConvertersTemperature ConvertersArea ConvertersVolume ConvertersSpeed ConvertersData & File Size ConvertersDigital & Data ToolsText ToolsGenerators About Contact
Processed locally in your browser

Unix Timestamp Converter

Convert a Unix timestamp to a readable date, or a date to a Unix timestamp — plus see the current timestamp updating live.

Current Unix Timestamp

Timestamp → Date

Converted Date
Local Time
ISO 8601

Date → Timestamp

Unix Timestamp
Milliseconds

What Is a Unix Timestamp?

A Unix timestamp (or "epoch time") counts the number of seconds that have elapsed since 00:00:00 UTC on 1 January 1970, ignoring leap seconds. It's widely used in programming and databases as a compact, unambiguous way to store a point in time.

Example Calculation

The Unix timestamp 1765123200 corresponds to 7 December 2025, 16:00:00 UTC.

Formula / Calculation Method

Timestamp (seconds) = (Date − 1 January 1970 00:00:00 UTC) ÷ 1 second.

How to Use This Tool

  1. To convert a timestamp to a date, paste it in and choose seconds or milliseconds.
  2. To convert a date to a timestamp, pick a date and optional time.
  3. Use the live current timestamp panel for the current epoch time.

Common Use Cases

Debugging APIs and log files that use epoch time
Database timestamp troubleshooting
Scheduling and cron expression testing
Working with JWT expiration times

Related Tools

Frequently Asked Questions

Does a Unix timestamp include time zone information?

No — a Unix timestamp always represents an absolute moment in UTC. The converter shows both UTC and your local time for the same instant.

What's the difference between seconds and milliseconds timestamps?

Unix timestamps are traditionally in seconds, but many JavaScript and web APIs use milliseconds (seconds × 1000) instead — this tool supports both.