About the current Unix timestamp in milliseconds
This page shows the current Unix timestamp in milliseconds — the number of milliseconds since 1 January 1970 (UTC). It is the value JavaScript returns from Date.now(), and it ticks up live. Copy it with one click or pause to freeze it, and see the matching local, UTC and ISO 8601 time. Everything runs in your browser.
How Current Unix Timestamp (Milliseconds) works
How to use it
- The current millisecond timestamp updates live at the top.
- Press Copy to copy it, or Pause to freeze the value first.
- Use the seconds value and the local/UTC/ISO times shown below as needed.
Seconds vs milliseconds
Many systems use seconds since the epoch, but JavaScript and some APIs use milliseconds (1 second = 1000 milliseconds). If a library expects seconds, divide the millisecond value by 1000; if it expects milliseconds, use this value directly.
Why it ticks live
"Current" means right now, so the number increases continuously. Pause it whenever you need a steady value to copy, then resume to track the present again.
Common uses
- Get the current time in milliseconds (Date.now)
- Match JavaScript millisecond timestamps
- Insert millisecond precision into logs
- Measure or seed time-based values
- Compare against a stored ms timestamp
- Debug front-end timing code
- Convert the moment to seconds, UTC or ISO
- Test millisecond timestamp handling