Developer Tools
~/timestamp-converter
// Convert Unix timestamps to dates or dates to epoch. Live current timestamp.
Current Unix Timestamp
-
milliseconds: -
// seconds or milliseconds - auto detected
Unix Time
Unix timestamp counts seconds elapsed since January 1, 1970 00:00:00 UTC - the Unix epoch.
Multi-timezone
See the same timestamp displayed across US, EU, and Asia timezones simultaneously.
Auto-detect
Automatically detects whether your input is in seconds (10-digit) or milliseconds (13-digit).
// FAQ
What is a Unix timestamp?
A Unix timestamp is the number of seconds that have elapsed since January 1, 1970 at 00:00:00 UTC (the Unix epoch). It is timezone-independent and widely used in programming.
Seconds vs milliseconds - how to tell?
A 10-digit number is seconds (e.g. 1700000000). A 13-digit number is milliseconds (e.g. 1700000000000). This tool auto-detects which one you input.
Why does the same timestamp show different times?
A Unix timestamp is a single point in time. The displayed date and time differs by timezone because each timezone applies a different UTC offset.