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