Skip to main content

Unix Timestamp Converter

Convert Unix timestamps to human-readable dates and vice versa. All processing happens in your browser.

Current Time

Live clock — updates every second

Unix Timestamp (seconds)
1790254576
Unix Timestamp (ms)
1790254576742
Human Readable (UTC)
Thu, 24 Sep 2026 12:56:16 GMT
Human Readable (Local)
9/24/2026, 12:56:16 PM
ISO 8601
2026-09-24T12:56:16.742Z

Convert Timestamp

Enter a Unix timestamp (seconds or milliseconds) or a date string — auto-detected

Quick:

Enter a timestamp or date above to convert

Supports Unix timestamps (s/ms), ISO 8601, and common date formats

About the Unix Timestamp

Convert Unix timestamps to readable dates and back, with a live clock of the current epoch time. A free, private converter for log analysis and API debugging - every conversion happens instantly in your browser.

Unix timestamps — seconds or milliseconds since January 1, 1970 — are the standard way databases, logs, and APIs represent time. They are compact and timezone-neutral, but completely unreadable to humans, so converting back and forth is a constant task during debugging and log analysis.

See the current timestamp ticking live, convert any epoch value to a human-readable date in your timezone, or go the other way from a date picker. Includes millisecond and second precision.

Use cases and examples

Read log lines during an incident: convert the epoch at the error to local time and correlate with other events.

Spot the seconds-versus-milliseconds bug instantly - a 13-digit value where 10 digits was expected.

Set expiry times for tokens and caches by computing the exact future timestamp.

How to use

  1. Read the live current timestamp at the top of the page.
  2. Paste an epoch value to convert it to a readable date and time.
  3. Or pick a date and time to get its Unix timestamp.
  4. Note whether your value is in seconds or milliseconds.

Frequently Asked Questions

How do I know if a timestamp is in seconds or milliseconds? ▾

Count the digits: 10 digits means seconds, 13 means milliseconds. A 13-digit value used as seconds would be a date tens of thousands of years in the future, which is a common bug.

What timezone does the conversion use? ▾

The readable output uses your browser local timezone. The timestamp itself is timezone-independent — it always represents the same instant worldwide.