Convert Unix timestamp to date
Convert a Unix timestamp (in seconds) to a readable date, in UTC and your local time.
Processed on your device. Nothing is sent to any server.
ISO 8601 (UTC)
2026-08-19T23:11:06.000Z
Local
Wednesday, August 19, 2026 at 11:11:06 PM UTC
Convert a Unix timestamp (seconds since January 1, 1970) to a readable date, in ISO 8601 UTC format and your local time.
Multiplies the timestamp by 1000 to get milliseconds and builds a date object, which is then formatted in two different representations.
Use cases
- Debugging a timestamp returned by an API.
- Checking what date a database value corresponds to.
- Converting logs with Unix timestamps.
How it works
- 1
Enter the timestamp
Type the value in seconds.
- 2
Read the date
It's shown in UTC and in your local time zone.
Frequently asked questions
- What if the timestamp is in milliseconds?
- Divide the value by 1000 before entering it, since this tool expects timestamps in seconds (the Unix standard).
Related tools
- Unix Timestamp ConverterConverts between timestamp and ISO date.
- Current Unix TimestampCurrent Unix timestamp and date converter.
- Hours to MinutesConverts hours to minutes.
- Minutes to HoursConverts minutes to hours.
- Add Days to a DateAdds days to a date.
- Age CalculatorCalculates exact age in years, months and days.