What Is Epoch 946684800?

Epoch 946684800 is January 1, 2000, 0:00:00 UTC (Saturday).

Breakdown

The Unix timestamp 946684800 represents exactly 946.7 million seconds (10,957 days) after the Unix epoch (January 1, 1970, 00:00:00 UTC). In ISO 8601 format, this is 2000-01-01T00:00:00Z. The timestamp equals 0.947 billion seconds, and in milliseconds it is 946684800000.

This is the Y2K moment: midnight on January 1, 2000 UTC. The Y2K bug scare feared that two-digit year fields would roll from 99 to 00, causing widespread system failures. Most systems survived thanks to extensive remediation.

UTCSat, 01 Jan 2000 00:00:00 GMT
ISO 86012000-01-01T00:00:00Z
Day of WeekSaturday
US EasternFriday, December 31, 1999 at 7:00:00 PM EST
Milliseconds946684800000
Seconds Since Epoch946,684,800

Code Examples

Python

from datetime import datetime, timezone

# Convert epoch 946684800 to UTC datetime
dt = datetime.fromtimestamp(946684800, tz=timezone.utc)
print(dt)  # 2000-01-01T00:00:00+00:00

# Format as human-readable string
print(dt.strftime("%A, %B %d, %Y %H:%M:%S UTC"))
# Saturday, January 1, 2000, 0:00:00 UTC

JavaScript

// Convert epoch 946684800 to Date
const date = new Date(946684800 * 1000);
console.log(date.toISOString());  // 2000-01-01T00:00:00Z
console.log(date.toUTCString());  // Sat, 01 Jan 2000 00:00:00 GMT

// Get individual components
console.log(date.getUTCFullYear());  // 2000
console.log(date.getUTCMonth() + 1); // 1

Go

package main

import (
    "fmt"
    "time"
)

func main() {
    t := time.Unix(946684800, 0).UTC()
    fmt.Println(t.Format(time.RFC3339)) // 2000-01-01T00:00:00Z
    fmt.Println(t.Weekday())            // Saturday
}

Frequently Asked Questions

How do I convert epoch 946684800 in Python?

Use datetime.fromtimestamp(946684800, tz=timezone.utc) from the datetime module. This returns a timezone-aware datetime object representing January 1, 2000, 0:00:00 UTC. For naive datetimes, use datetime.utcfromtimestamp(946684800), though the timezone-aware version is preferred in modern Python.

What is epoch 946684800 in milliseconds?

Epoch 946684800 in milliseconds is 946684800000. JavaScript, Java, and many APIs use millisecond timestamps. To convert, multiply the seconds-based timestamp by 1000. To go back, divide by 1000 and drop the remainder.

Is epoch 946684800 in the past or future?

Epoch 946684800 is in the past. It occurred on January 1, 2000, which was 9,597 days ago.

Try the full Epoch Converter to convert any timestamp instantly.

Related Questions