Timestamp Converter
Convert between Unix timestamps and human-readable dates.
Timestamp → Date
Date → Timestamp
Current timestamp:
Convert between Unix timestamps and human-readable dates.
A Unix timestamp (also called Epoch time or POSIX time) counts the number of seconds since January 1, 1970 00:00:00 UTC. It's the standard way computers store and communicate time, used in databases, APIs, log files, and programming languages.
Timestamps are timezone-independent — the same number means the same moment everywhere in the world. They're easy to sort, compare, and do math with. Most programming languages have built-in functions to convert between timestamps and human-readable dates.