Unix timestamp converter is a time tool that translates between Unix epoch timestamps and human-readable dates. It auto-detects seconds versus milliseconds, displays UTC, local, and relative time, and provides a live current-timestamp button. The tool runs in your browser.
MODE
Direct links for each conversion mode.
Date from the timestamp via new Date(value) (milliseconds) or new Date(value * 1000) (seconds). Reverse direction uses date.getTime() divided by 1000 for seconds output.Date and Intl.DateTimeFormat for locale-aware formatting; no external library.Reviewed and tested May 25, 2026.