live unix time
Current Unix Timestamp
The Unix time right now, in every precision. Each value updates live and copies with one click — use Pause to freeze the clock while you work.
Current Unix time
Live — loading…
—
—
—
—
Reading the live clock
All four fields show the same instant. Seconds is the canonical Unix timestamp — what date +%s, PHP's time() and most APIs return.Milliseconds is what JavaScript, Java and SQLite use.Microseconds and nanoseconds are the same value scaled by 106 and 109 for databases, tracing systems and Go'sUnixNano().
Timestamp milestones
| Timestamp | Moment (UTC) |
|---|---|
| 1000000000 | 2001-09-09 01:46:40 — 10 digits begin |
| 1234567890 | 2009-02-13 23:31:30 — the palindromic party |
| 1500000000 | 2017-07-14 02:40:00 |
| 2000000000 | 2033-05-18 03:33:20 |
| 2147483647 | 2038-01-19 03:14:07 — 32-bit signed max |
| 4294967295 | 2106-02-07 06:28:15 — 32-bit unsigned max |
Convert a timestamp you already have
Paste any value below to see it as a human-readable date in UTC, your local zone or any IANA timezone.
Accepts Unix timestamps (s / ms / µs / ns), ISO 8601, RFC 2822 and common date strings.
Timestamp
Unix timestamp (seconds)
—
Milliseconds
—
Microseconds
—
Nanoseconds
—
Date & time
UTC
—
Local time
—
Selected timezone
—
Relative time
—
ISO 8601
—
RFC 3339
—
RFC 2822
—
Frequently asked questions
What is the Unix time right now?
Date.now().How many digits is the current Unix timestamp?
How accurate are the microsecond and nanosecond values?
Date.now(), so the microsecond and nanosecond fields are exact multiples of the current millisecond (three or six trailing zeros). They are the correct values to the precision your browser can measure.How do I get the current timestamp in code?
Math.floor(Date.now() / 1000). Python: int(time.time()). PHP: time(). Go: time.Now().Unix(). Java: Instant.now().getEpochSecond(). Shell: date +%s.Related tools
Unix Timestamp Converter
Convert timestamps and dates with automatic unit detection — seconds, milliseconds, microseconds, nanoseconds.
Timestamp to Date
Turn any Unix timestamp into UTC, local time, ISO 8601, RFC 3339 and relative time.
Date to Timestamp
Pick a date, time and IANA timezone to get the exact Unix timestamp in every precision.
Epoch Converter
The classic epoch time converter: bidirectional conversion between epoch values and human-readable dates.
Timezone Converter
See one instant across multiple IANA timezones side by side, with add, reorder and copy-all.
Batch Timestamp Converter
Paste a list of timestamps and convert them all at once. Copy as a table or download CSV.