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