>_ Timestamp Converter

Convert between Unix epoch timestamps and human-readable dates. Supports seconds and milliseconds.

Current Timestamp:

How to Use

  1. Enter a Unix timestamp OR pick a date/time
  2. Select seconds or milliseconds format
  3. Click the convert button for the result

FAQ

What is a Unix timestamp?>
A Unix timestamp is the number of seconds (or milliseconds) elapsed since January 1, 1970 00:00:00 UTC (the Unix epoch). It is widely used in programming for date/time storage.
What's the Y2K38 problem?>
32-bit systems store timestamps as signed 32-bit integers, which overflow on January 19, 2038. Modern 64-bit systems and JavaScript use 64-bit numbers, avoiding this issue.