EllyTools

Image Tools

Calculators

Text Tools

Color Tools

File Tools

Utility Tools

Unix Timestamp Converter

Convert Unix timestamps to dates and back

Current Unix Timestamp

β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”

Dates below are shown in this zone; your browser's zone is selected at the start.

The date and time above are read as UTC.

β—ˆ How to Use

1

Paste a Unix timestamp (10-digit seconds or 13-digit milliseconds)

2

The date appears in the time zone you pick, with UTC, ISO 8601 and how long ago it was

3

Or enter a date and copy the resulting Unix timestamp

❓ Frequently Asked Questions

Related Tools

β—‰ Who Is This For?

  • βœ“Developers debugging API responses that return Unix timestamps
  • βœ“Engineers reading server logs and correlating events across time zones
  • βœ“Anyone curious what time '1700000000' really represents

Unix Timestamp Converter: Seconds Since 1970

Unix timestamps count seconds elapsed since January 1, 1970 UTC β€” the 'epoch.' They're how computers store time internally, and converting them to readable dates (and back) is a daily task for developers.

The Unix epoch is January 1, 1970 at 00:00:00 UTC. Every Unix timestamp is the number of seconds since that moment. As of 2026, current timestamps are around 1,778,000,000 (about 56 years Γ— 31.5 million seconds/year).

Many languages use milliseconds (timestamp Γ— 1000) instead of seconds. JavaScript, for example, defaults to ms. Always check whether you're working with seconds or milliseconds.

Common timestamp gotchas

  • β€’Seconds vs milliseconds β€” JavaScript Date.now() returns ms; most APIs use seconds
  • β€’Time zones β€” timestamps are always UTC. Display in local time requires conversion
  • β€’32-bit overflow β€” the 'Year 2038 problem.' Old systems using 32-bit signed integers can't represent timestamps past Jan 19, 2038
  • β€’Leap seconds β€” Unix timestamps don't count them; the time between two timestamps may be 1 second off across leap second boundaries

Extended FAQ

Why January 1, 1970?

It was the design choice when Unix was created. The earliest Unix systems stored time in seconds since this date for engineering simplicity.

What if I see a 13-digit timestamp?

It's milliseconds. Divide by 1000 to get seconds.

Are my timestamps stored?

No. The conversion is arithmetic on the number you paste, done in the page.