| Unix timestamp (seconds) | 1,111,111,111 |
|---|---|
| In milliseconds | 1,111,111,111,000 |
| UTC date & time | Friday, March 18, 2005, 01:58:31 UTC |
| Day of week (UTC) | Friday |
| ISO 8601 | 2005-03-18T01:58:31Z |
| RFC 2822 | Fri, 18 Mar 2005 01:58:31 +0000 |
| Your local time | — |
| Day of year | Day 77 of 2005 (365 days) |
| ISO week | 2005-W11 |
| Days since epoch | 12,860 full days + 7,111 seconds |
| Julian Date | JD 2453447.58230 |
| Hexadecimal | 0x423A35C7 |
| Binary (32-bit) | 01000010 00111010 00110101 11000111 |
| Read as milliseconds | Tuesday, January 13, 1970, 20:38:31 UTC — the classic off-by-1000 mistake |
| 32-bit signed | Fits in a signed 32-bit integer with 1,036,372,536 seconds (32 years, 307 days) to spare before the 2038 limit. |
| Previous milestone | 1000000000 (One Billion Seconds) is 1,286 days earlier |
| Next milestone | 1234567890 (The 1234567890 Timestamp) is 1,428.9 days later |
What does the timestamp 1111111111 mean?
Some timestamps are just fun to look at, and 1,111,111,111 is one of them — the eye-catching all-ones timestamp 1111111111. In human terms it is Friday, March 18, 2005 at 01:58:31 UTC. Here is the full breakdown plus copy-paste conversion code.
This repdigit (a number made of a single repeated digit) is a favourite among developers who like watching the clock roll past pleasing patterns. Sequential and repeated-digit timestamps like this one are popular moments to take a screenshot of a running system.
Why 1111111111 matters
Repdigit timestamps are the Unix clock's version of watching a car odometer roll over to all ones. 1111111111 arrived at 01:58:31 UTC on Friday, March 18, 2005, and it is the only ten-digit all-ones value that will ever fit in a signed 32-bit integer: the previous one, 111111111, fell on July 10, 1973, and the next, 11111111111, is not due until 2322. Other repeated-digit patterns are spaced the same way. The all-twos value 2222222222 lands on June 2, 2040, safely beyond the 2038 limit, so on a 32-bit system it will never be observed at all. These moments matter to nobody's production schedule, but they are genuinely useful. A timestamp that is easy to recognise at a glance is easy to spot in logs, easy to remember when writing a test fixture, and easy to verify by hand, which is why a distinctive pattern like this one tends to show up in screenshots and commit messages whenever it is used. If you want to reuse it, note the arithmetic: 1111111111 is 12,860 full days and 7,111 seconds after the epoch, or roughly 35 years, 76 days.
The exact value, every way you need it
A Unix timestamp is a single integer: the count of seconds elapsed since the Unix epoch (midnight UTC on January 1, 1970), ignoring leap seconds. The value 1,111,111,111 seconds is the same instant as 1,111,111,111,000 milliseconds — the form most programming languages expect, since JavaScript, Java, and many databases store time in milliseconds. Written out in full it is Friday, March 18, 2005 at 01:58:31 UTC, which is a Friday. In the two most common machine-readable formats it is 2005-03-18T01:58:31Z (ISO 8601) and Fri, 18 Mar 2005 01:58:31 +0000 (RFC 2822). All of these describe one and the same moment in time; they differ only in notation.
How to convert 1111111111 in code
Turning this timestamp into a human-readable date takes a single expression in most languages. In JavaScript, remember to multiply by 1000 because Date works in milliseconds: new Date(1111111111 * 1000).toUTCString(). Here are the equivalents in three common environments:
// JavaScript const ts = 1111111111; const date = new Date(ts * 1000); // JS uses milliseconds console.log(date.toUTCString()); // Fri, 18 Mar 2005 01:58:31 GMT console.log(date.toISOString()); // 2005-03-18T01:58:31Z
# Python 3 from datetime import datetime, timezone ts = 1111111111 print(datetime.fromtimestamp(ts, tz=timezone.utc)) # 2005-03-18 01:58:31+00:00
# Bash / GNU date date -u -d @1111111111 # Fri, 18 Mar 2005 01:58:31 UTC # macOS / BSD date date -u -r 1111111111
If you would rather not write code at all, the Epoch Converter is pre-loaded with 1111111111 so you can see it converted instantly and tweak the value live.
How long ago (or how far away) is it?
The headline near the top of this page updates every time you load it, computing the gap between 1111111111 and your current clock in real time so it never goes stale. To measure the span between this timestamp and any other date precisely — in years, months, weeks, days, or business days — use the Date Duration Calculator. To watch a future moment tick down second by second, the Countdown Timer can target this exact instant.
Why timestamps matter
Storing time as a plain integer of seconds is wonderfully unambiguous: there is no time zone, no daylight saving, and no locale to misinterpret. Two servers anywhere on Earth agree on what 1111111111 means. That is why logs, databases, JWTs, file metadata, and APIs lean on Unix time so heavily. The trade-off is that the number is not human-friendly at a glance — which is exactly the gap a reference like this page fills.
Related timestamps
Other notable Unix timestamps worth a look:
- 1000000 — One Million Seconds1000000000 — One Billion Seconds1234567890 — The 1234567890 Timestamp1300000000 — Round Timestamp 1.3 Billion