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