Instantly decode Epoch timestamps into human-readable dates or generate timestamps for any moment in time. Supports both seconds and milliseconds.
The Unix Timestamp (or Epoch time) is a system for tracking time that counts the number of seconds that have elapsed since January 1, 1970, at 00:00:00 UTC.
Similar to the Y2K bug, the Year 2038 problem (Y2K38) impacts 32-bit systems where the timestamp is stored as a signed integer. The maximum value a 32-bit signed integer can hold is 2,147,483,647.
On January 19, 2038, at 03:14:07 UTC, 32-bit clocks will overflow and interpret the date as December 13, 1901.
Math.floor(Date.now() / 1000)
time();
import time; time.time()