Convert
Unix Timestamp Converter
Paste an epoch value or a date string and get the other instantly. Seconds and milliseconds are detected automatically.
Convert
Paste an epoch value or a date string and get the other instantly. Seconds and milliseconds are detected automatically.
Walkthrough
Use cases
Reading a timestamp from logs. Most backends log epoch seconds or milliseconds — convert them before filing the bug report.
Writing a date into an API call. Turn a human date into the epoch value your API expects, without a calculator.
Double-checking expiry values. JWT exp claims, cookie lifetimes, and cache headers all use epoch time — this tells you when they actually run out.
FAQ
Values larger than 100 billion are treated as milliseconds, everything else as seconds. That covers virtually every real timestamp — if your value is ambiguous, try the other unit and compare the year.
Anything the browser's Date parser accepts — ISO 8601 (2024-01-01T12:00:00Z), plain dates (2024-01-01), and common variants. If it doesn't parse, the status line tells you.
No. All conversion happens locally with JavaScript's built-in Date, in your browser tab.
Related