← All tools
// Time

Unix Timestamp online

Convert Unix timestamps to dates and dates back to Unix

Unix Timestamp Converter logo
by
CHUNKY
MUNSTER
Current Unix (seconds)
Current Unix (ms)

// Timestamp → Date

// Date → Timestamp

How to Use unix-time

  1. Paste any Unix timestamp (seconds or milliseconds) into the top input field.
  2. Select the unit — seconds for standard epoch, milliseconds for JavaScript Date.now().
  3. Click Convert to see the UTC date, local time, ISO 8601 string, and day-of-week.
  4. Use the date/time picker below to go the other direction — pick a date and read its epoch value.

Unix epoch time counts seconds elapsed since 00:00:00 UTC on 1 January 1970 — the universal language for timestamps in databases, APIs, and log files. This converter handles both second-precision and millisecond-precision values, shows UTC and local time side by side, and runs entirely in your browser with no data sent anywhere.

What You Can Do with Unix Timestamp Converter

Paste a raw epoch integer and get a fully annotated date breakdown: day of week, month name, ISO 8601, RFC 2822, and relative time ("3 days ago"). Going the other direction, pick any date from the calendar and the corresponding Unix value appears instantly — useful when constructing API queries or debugging scheduled tasks. The live counter at the top shows the current epoch in real time so you always have a reference point.

Frequently Asked Questions

What exactly is a Unix timestamp?

It is an integer representing the number of seconds (or milliseconds) that have elapsed since the Unix epoch: midnight UTC on 1 January 1970. It is timezone-agnostic, making it ideal for storing and transmitting time across systems.

What is the difference between seconds and millisecond timestamps?

A seconds-precision Unix timestamp is typically 10 digits (e.g. 1700000000). A millisecond timestamp is 13 digits (e.g. 1700000000000) and is commonly returned by JavaScript's Date.now() and many REST APIs.

What is the Year 2038 problem?

On 32-bit systems, Unix time is stored as a signed 32-bit integer, which overflows on 19 January 2038. This converter uses JavaScript's 64-bit floating-point numbers, so it handles dates well beyond 2038 without issue.

Can I convert to a specific timezone?

Yes. The tool shows your local timezone automatically. For other zones, use the Timezone Converter linked in Related Tools to shift the output to any IANA timezone.

Bookmark this page for instant epoch lookups — it also works offline once the page is loaded.