What is a Unix Timestamp?
A Unix timestamp (also called POSIX or Epoch time) represents the number of seconds elapsed since 00:00:00 UTC on January 1, 1970 (excluding leap seconds). It is widely used in databases, operating systems, and API logs due to its timezone-agnostic representation.
Frequently Asked Questions
How does this tool distinguish between seconds and milliseconds?
10-digit integers are processed as seconds, while 13-digit integers are automatically detected as milliseconds.
What is the Year 2038 problem?
Systems storing 32-bit signed integers for Unix time will overflow on January 19, 2038. Modern JavaScript uses 64-bit floating-point numbers, preventing this overflow.