Skip to main content
KO
🕐

Timestamp Converter

Convert Unix timestamps to dates and dates to timestamps.

Current Time


Timestamp → Date


Date → Timestamp

💡 How to Use

Enter a timestamp to convert to a date, or enter a date to get its timestamp. You can also view the current time's timestamp.

FAQ

What is a Unix timestamp?
It is the number of seconds elapsed since January 1, 1970, 00:00:00 UTC. It is a standard way to handle time in programming.
What's the difference between millisecond and second timestamps?
Second timestamps are 10 digits (e.g., 1700000000), millisecond timestamps are 13 digits (e.g., 1700000000000). JavaScript's Date.now() returns milliseconds.

Related Articles