Unix Timestamp Converter

Convert between Unix timestamps (seconds or milliseconds) and human-readable dates.

Accepts ISO 8601 or most common date strings.

Unix Timestamp Converter guide

The Unix Timestamp Converter converts epoch timestamps into human-readable dates and converts dates back to epoch time. Developers often see Unix timestamps in logs, databases, APIs, analytics exports, message queues and scheduled jobs.

A timestamp by itself is easy to misread because systems may store seconds, milliseconds or ISO dates, and time zones can change the displayed local time. This tool helps you check the exact meaning before debugging or editing data.

When to use it

How to use it

  1. Paste a Unix timestamp or enter a date and time.
  2. Check whether the value is interpreted as seconds or milliseconds.
  3. Compare UTC output with local time where relevant.
  4. Adjust the input until the displayed date matches your intent.
  5. Copy the value in the format required by your system.

Example

Input

1767225600

Output

2026-01-01 00:00:00 UTC

The local displayed time may differ depending on your time zone.

Privacy

Conversions are calculated in your browser. Dates and timestamps are not sent to UtilityTools.eu.

Limitations and accuracy notes

FAQ

Why is my timestamp in 1970?

You may have pasted milliseconds into a seconds field or seconds into a milliseconds field.

Should APIs use UTC?

UTC is usually safest for storage and APIs. Convert to local time only for display.

Does daylight saving time matter?

Yes for local display and scheduling. Store instants in UTC when possible.