4294967295 Unix Timestamp
4294967295 = 2106-02-07 06:28:15 UTC
4294967295 is 2106-02-07 06:28:15 UTC
The Unix timestamp 4294967295 equals 2106-02-07T06:28:15.000Z — Sunday, February 7, 2106 at 06:28:15 UTC. The value is the number of seconds elapsed since the Unix epoch (1970-01-01 00:00:00 UTC).
Seconds vs milliseconds
4294967295 is in Unix seconds. JavaScript, Java, and several database drivers expect Unix milliseconds instead — same instant, value × 1000.
- Unix seconds: 4294967295
- Unix milliseconds: 4294967295000
- ISO 8601 UTC: 2106-02-07T06:28:15.000Z
- Day of year 2106: 38
Local timezone equivalents
4294967295 is a single instant; the wall-clock date and time differ by timezone.
- UTC: 2106-02-07 06:28:15
- America/New_York: 2106-02-07 01:28:15
- America/Los_Angeles: 2106-02-06 22:28:15
- Europe/London: 2106-02-07 06:28:15
- Europe/Berlin: 2106-02-07 07:28:15
- Asia/Shanghai: 2106-02-07 14:28:15
- Asia/Tokyo: 2106-02-07 15:28:15
- Australia/Sydney: 2106-02-07 17:28:15
Convert in code
One-liners for the languages people most often ask about. Multiply by 1000 for JavaScript Date.
- JavaScript: new Date(4294967295 * 1000).toISOString() → "2106-02-07T06:28:15.000Z"
- JavaScript (ms form): new Date(4294967295000).toISOString()
- Python: datetime.fromtimestamp(4294967295, tz=timezone.utc)
- Python ISO: datetime.fromtimestamp(4294967295, tz=timezone.utc).isoformat()
- Linux: date -u -d @4294967295
- macOS: date -u -r 4294967295
- Go: time.Unix(4294967295, 0).UTC()
- SQL (PostgreSQL): SELECT to_timestamp(4294967295) AT TIME ZONE 'UTC';
- SQL (MySQL): SELECT FROM_UNIXTIME(4294967295);
Common mistake: new Date(4294967295) in JavaScript
JavaScript's Date constructor takes milliseconds. Passing the seconds value as-is asks Date to interpret it as 4,294,967,295 ms — only a few weeks past the epoch. The result lands in early 1970.
- Right: new Date(4294967295 * 1000) → 2106-02-07T06:28:15.000Z
- Wrong: new Date(4294967295) → 1970-02-19T17:02:47.295Z
- Quick rule: a 10-digit number is seconds; a 13-digit number is milliseconds.
4294967295 timestamp FAQ
- What date is Unix timestamp 4294967295?
- 4294967295 in Unix seconds is 2106-02-07T06:28:15.000Z — Sunday, February 7, 2106 at 06:28:15 UTC.
- What is 4294967295 in milliseconds?
- 4294967295000 milliseconds is the same instant — the form JavaScript Date and Java Instant expect.
- Why does new Date(4294967295) show 1970?
- JavaScript Date takes milliseconds. The seconds value treated as milliseconds points to early 1970. Use new Date(4294967295 * 1000) instead.
- How do I convert 4294967295 in shell?
- Linux: date -u -d @4294967295. macOS: date -u -r 4294967295. Both return the UTC date.