See the current Unix timestamp ticking live, convert any epoch value to a human-readable date, or convert a date back to an epoch. Select your timezone and switch between seconds and milliseconds instantly.
When to Use the Epoch Converter
Use the epoch converter when debugging API timestamps, reading database time fields, converting log file timestamps, setting cache expiry times, or verifying JWT token expiration dates.
Tips
- JavaScript timestamps are in milliseconds — divide by 1000 before comparing with Unix timestamps from other languages.
- If a timestamp looks like 1712345678000, it is likely in milliseconds. If it looks like 1712345678, it is in seconds.
- Store timestamps in UTC and convert to local time only for display — this avoids timezone bugs.
- Epoch 0 is 1 January 1970 00:00:00 UTC. Negative values represent dates before 1970.