What is Unix Timestamp Converter?
A browser-based Unix timestamp converter that transforms between machine-readable epoch time and human-readable dates. Enter a timestamp in seconds or milliseconds, or paste an ISO date string, and instantly see the UTC time, local time, day of week, and timezone offset. The current timestamp is shown by default for quick reference.
quickAnswer
Convert Unix timestamps (seconds or ms) to readable dates, or convert dates to timestamps. Shows UTC, local time, and timezone offset. Current timestamp displayed by default.
Last updated: 2026-06-08
limitations
- Timestamp parsing depends on the browser's Date implementation — exotic date formats beyond ISO 8601 may not parse correctly in all browsers.
- Does not handle dates before year 1 or after year 275760 (JavaScript Date limits).
- Time display uses the browser's local timezone — make sure your system clock and timezone are correct for accurate local time display.
Sources:MDN Web Docs · W3C Specifications · jquery.app on GitHub
How to use this tool
- Enter a Unix timestamp (seconds or milliseconds) or an ISO date string.
- Toggle between seconds and milliseconds input mode.
- Toggle between UTC and local time display.
- Copy any output value for use in your code or logs.
What you can use it for
- Convert a Unix timestamp from server logs (e.g., 1716242622) into a readable date to investigate when an event occurred.
- Get the current Unix timestamp in milliseconds for use in an API request that requires epoch time.
- Check the timezone offset and UTC equivalent of a local timestamp before storing it in a database.