1830297600

1830297600 Unix Timestamp

1830297600 = 2028-01-01 00:00:00 UTC

1830297600 is 2028-01-01 00:00:00 UTC

The Unix timestamp 1830297600 equals 2028-01-01T00:00:00.000Z — Saturday, January 1, 2028 at 00:00:00 UTC. The value is the number of seconds elapsed since the Unix epoch (1970-01-01 00:00:00 UTC).

Seconds vs milliseconds

1830297600 is in Unix seconds. JavaScript, Java, and several database drivers expect Unix milliseconds instead — same instant, value × 1000.

  • Unix seconds: 1830297600
  • Unix milliseconds: 1830297600000
  • ISO 8601 UTC: 2028-01-01T00:00:00.000Z
  • Day of year 2028: 1

Local timezone equivalents

1830297600 is a single instant; the wall-clock date and time differ by timezone.

  • UTC: 2028-01-01 00:00:00
  • America/New_York: 2027-12-31 19:00:00
  • America/Los_Angeles: 2027-12-31 16:00:00
  • Europe/London: 2028-01-01 00:00:00
  • Europe/Berlin: 2028-01-01 01:00:00
  • Asia/Shanghai: 2028-01-01 08:00:00
  • Asia/Tokyo: 2028-01-01 09:00:00
  • Australia/Sydney: 2028-01-01 11:00:00

Convert in code

One-liners for the languages people most often ask about. Multiply by 1000 for JavaScript Date.

  • JavaScript: new Date(1830297600 * 1000).toISOString() → "2028-01-01T00:00:00.000Z"
  • JavaScript (ms form): new Date(1830297600000).toISOString()
  • Python: datetime.fromtimestamp(1830297600, tz=timezone.utc)
  • Python ISO: datetime.fromtimestamp(1830297600, tz=timezone.utc).isoformat()
  • Linux: date -u -d @1830297600
  • macOS: date -u -r 1830297600
  • Go: time.Unix(1830297600, 0).UTC()
  • SQL (PostgreSQL): SELECT to_timestamp(1830297600) AT TIME ZONE 'UTC';
  • SQL (MySQL): SELECT FROM_UNIXTIME(1830297600);

Common mistake: new Date(1830297600) in JavaScript

JavaScript's Date constructor takes milliseconds. Passing the seconds value as-is asks Date to interpret it as 1,830,297,600 ms — only a few weeks past the epoch. The result lands in early 1970.

  • Right: new Date(1830297600 * 1000) → 2028-01-01T00:00:00.000Z
  • Wrong: new Date(1830297600) → 1970-01-22T04:24:57.600Z
  • Quick rule: a 10-digit number is seconds; a 13-digit number is milliseconds.

1830297600 timestamp FAQ

What date is Unix timestamp 1830297600?
1830297600 in Unix seconds is 2028-01-01T00:00:00.000Z — Saturday, January 1, 2028 at 00:00:00 UTC.
What is 1830297600 in milliseconds?
1830297600000 milliseconds is the same instant — the form JavaScript Date and Java Instant expect.
Why does new Date(1830297600) show 1970?
JavaScript Date takes milliseconds. The seconds value treated as milliseconds points to early 1970. Use new Date(1830297600 * 1000) instead.
How do I convert 1830297600 in shell?
Linux: date -u -d @1830297600. macOS: date -u -r 1830297600. Both return the UTC date.