Utill.net

Unix Timestamp Converter

Epoch to Human Date

Convert Unix timestamps in seconds to ISO dates, or convert local date-time input back to epoch seconds.

What is this tool?

This Unix timestamp converter translates epoch seconds into ISO date strings and converts browser-local date-time input back into epoch seconds. Unix time counts seconds elapsed since 1970-01-01 00:00:00 UTC.

The distinction between seconds and milliseconds is important. Many APIs use seconds, JavaScript Date.now() returns milliseconds, and databases may store either. A value that is off by a factor of 1000 usually points to that mismatch.

Use it for logs, JWT exp and iat claims, scheduled jobs, analytics exports, database fields, cache expiration values, and API debugging.

How to use

  1. Use the current timestamp display when you need the current epoch value.
  2. Enter a Unix timestamp in seconds to convert it to an ISO date.
  3. Choose a local date and time to convert it back to epoch seconds.
  4. Confirm time-zone expectations before using the value in APIs, jobs, or databases.

Examples

Input / settingOutputNotes
01970-01-01T00:00:00.000ZThe Unix epoch start.
17000000002023-11-14T22:13:20.000ZEpoch seconds converted to ISO time.

Related tools & concepts

Last reviewed: 2026-05-08