Current Unix Epoch (Seconds)
0
— OR —
How to Use Epoch to Human-Readable Date Converter
Working With Epoch Timestamps
API logs, database records, and system events often store time as Unix epoch values (seconds or milliseconds since January 1, 1970). Reading "1720000000" in a log file tells you nothing at a glance.
This converter transforms epoch timestamps to human-readable dates in your local timezone, UTC, and ISO 8601 format. It auto-detects whether the value is in seconds or milliseconds. You can also convert dates back to epoch. Everything is computed locally using JavaScript's Date API.
Frequently Asked Questions
Yes. It auto-detects whether your value is in seconds (10 digits) or milliseconds (13 digits).