Auto-Detects Seconds vs Milliseconds
10-digit inputs are treated as seconds (standard Unix); 13-digit inputs are treated as JavaScript milliseconds — no manual mode switching needed when working across different systems.
500+ fast, free tools. Most run in your browser only; Image & PDF tools upload files to the backend when you run them.
Convert Unix timestamps to readable date and back
Unix Time Converter on UtilityKit converts between Unix epoch timestamps and human-readable dates in both directions: paste a raw integer and see the UTC date plus your local timezone equivalent, or pick a calendar date and get the epoch seconds ready for code, APIs, or database queries. Unix time — seconds elapsed since 00:00:00 UTC on 1 January 1970 — is the universal format across backend systems, logs, cloud APIs, and JWT claims. The tool auto-detects scale: 10-digit inputs are seconds; 13-digit inputs are JavaScript milliseconds. Output shows both the ISO 8601 UTC string and your locale-formatted local time. A Now button stamps the current second instantly. The reverse direction accepts a datetime picker and outputs the floor-second integer ready to paste into a curl command, SQL WHERE clause, or JWT exp field.
10-digit inputs are treated as seconds (standard Unix); 13-digit inputs are treated as JavaScript milliseconds — no manual mode switching needed when working across different systems.
The result always shows both the ISO 8601 UTC string and your browser's locale-formatted local time, so you never have to mentally subtract your UTC offset.
The Now button stamps the current second as a Unix timestamp and converts it immediately — useful for generating test values, documenting when a config was set, or checking the current epoch without arithmetic.
Pick any calendar date and time and get the exact Unix timestamp back in seconds, ready to paste into a curl parameter, SQL WHERE clause, or JWT exp field.
Server logs and JWT payloads surface epoch integers that are unreadable at a glance. Paste them here to confirm whether a token is expired or a log event occurred in the right time window.
Date arithmetic runs entirely in the browser using the native JavaScript Date API. No server, no account, and no Internet connection required once the page has loaded.
Input: 1746057600
Output: 2025-05-01T00:00:00.000Z (local: 1 May 2025, 00:00:00 in your timezone)
Input: 1715000000000
Output: 2024-05-06T20:13:20.000Z (13-digit inputs auto-detected as milliseconds)
Input: 2025-01-15 09:00 (selected via date picker)
Output: 1736931600 — paste directly into a cron trigger, SQL WHERE clause, or API parameter