100% client-side · nothing leaves your browser

Convert any timestamp

Paste a Unix timestamp, an ISO 8601 date, or just type "now". Auto-detected and converted to every other format.

timestamp
snippet.js

  

Seconds vs. milliseconds

A 10-digit number is treated as Unix seconds (the Unix standard); a 13-digit number is treated as milliseconds (what JavaScript's Date.now() returns). This is why new Date(unixSeconds) in JavaScript often produces a date decades off — it expects milliseconds, not seconds.