Convert Unix timestamps into normal dates you can read.
Loading tool...
The Epoch Converter converts Unix epoch timestamps (seconds and milliseconds since January 1, 1970 UTC) into human-readable date/time strings across all global timezones, and converts human dates into Unix epoch numbers.
Uses JavaScript `Date` and `Intl.DateTimeFormat` Web APIs to calculate absolute time intervals relative to the Unix epoch (`1970-01-01T00:00:00Z`). Accurately handles leap years, daylight saving time (DST) shifts, and timezone offsets.
1771408000 (Seconds)UTC: Wednesday, February 18, 2026 09:46:40 GMT
ISO 8601: 2026-02-18T09:46:40.000ZCalculates the exact calendar date, time, and ISO string corresponding to the 10-digit second count.
Unix Epoch time is a system for describing a point in time. It is the number of seconds that have elapsed since the Unix epoch, minus leap seconds; the epoch is 00:00:00 UTC on 1 January 1970.
Yes! The tool automatically detects if a timestamp is in seconds (standard Unix) or milliseconds (commonly used in JavaScript) and adjusts the calculation accordingly.
The Year 2038 problem occurs when 32-bit systems run out of room to store epoch time. Our tool uses 64-bit JavaScript numbers, safely supporting dates millions of years into the future.