Convert between Unix/Epoch timestamps and human-readable dates. Supports seconds and milliseconds with timezone information
Convert between Unix timestamps and human-readable dates. Enter a timestamp to see the corresponding date and time, or pick a date to get the timestamp. Supports seconds and milliseconds.
Initializing in your browser…
A log line records `1700000000` and you need the human date to correlate it with an incident timeline.
Unix timestamp (seconds)
1700000000
Human time
UTC: 2023-11-14 22:13:20 Local: 2023-11-14 23:13:20 (Europe/Berlin) Relative: ~6 months ago
A Unix timestamp counts seconds since 1970-01-01 UTC, so it is timezone-agnostic until rendered, the tool shows UTC and your local zone side by side to prevent off-by-hours mistakes when correlating logs. It also handles millisecond timestamps and converts the other way for building queries.
Convert between Unix timestamps and human-readable dates. Enter a timestamp to see the corresponding date and time, or pick a date to get the timestamp. Supports seconds and milliseconds.
Convert epoch timestamps from application logs into readable dates for debugging.
Generate timestamp values for SQL WHERE clauses when filtering by date ranges.
Convert between human-readable dates and the epoch format many APIs use for time fields.
The number of seconds (or milliseconds) that have elapsed since January 1, 1970, 00:00:00 UTC, also known as the Unix epoch.
Timestamps in seconds are typically 10 digits (until the year 2286). Millisecond timestamps are 13 digits.
Conversions run on your device in JavaScript. The values you enter are never sent over the network.