What Is Epoch 1000211160?

Epoch 1000211160 is September 11, 2001, 12:26:00 UTC (Tuesday).

Breakdown

The Unix timestamp 1000211160 represents exactly 1.0 billion seconds (11,576 days, 12 hours, 26 minutes) after the Unix epoch (January 1, 1970, 00:00:00 UTC). In ISO 8601 format, this is 2001-09-11T12:26:00Z. The timestamp equals 1.000 billion seconds, and in milliseconds it is 1000211160000.

This timestamp falls on September 11, 2001, the day of the devastating terrorist attacks on the World Trade Center and Pentagon in the United States, an event that reshaped global politics and security.

UTCTue, 11 Sep 2001 12:26:00 GMT
ISO 86012001-09-11T12:26:00Z
Day of WeekTuesday
US EasternTuesday, September 11, 2001 at 8:26:00 AM EDT
Milliseconds1000211160000
Seconds Since Epoch1,000,211,160

Code Examples

Python

from datetime import datetime, timezone

# Convert epoch 1000211160 to UTC datetime
dt = datetime.fromtimestamp(1000211160, tz=timezone.utc)
print(dt)  # 2001-09-11T12:26:00+00:00

# Format as human-readable string
print(dt.strftime("%A, %B %d, %Y %H:%M:%S UTC"))
# Tuesday, September 11, 2001, 12:26:00 UTC

JavaScript

// Convert epoch 1000211160 to Date
const date = new Date(1000211160 * 1000);
console.log(date.toISOString());  // 2001-09-11T12:26:00Z
console.log(date.toUTCString());  // Tue, 11 Sep 2001 12:26:00 GMT

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

Go

package main

import (
    "fmt"
    "time"
)

func main() {
    t := time.Unix(1000211160, 0).UTC()
    fmt.Println(t.Format(time.RFC3339)) // 2001-09-11T12:26:00Z
    fmt.Println(t.Weekday())            // Tuesday
}

Frequently Asked Questions

How do I convert epoch 1000211160 in Python?

Use datetime.fromtimestamp(1000211160, tz=timezone.utc) from the datetime module. This returns a timezone-aware datetime object representing September 11, 2001, 12:26:00 UTC. For naive datetimes, use datetime.utcfromtimestamp(1000211160), though the timezone-aware version is preferred in modern Python.

What is epoch 1000211160 in milliseconds?

Epoch 1000211160 in milliseconds is 1000211160000. 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 1000211160 in the past or future?

Epoch 1000211160 is in the past. It occurred on September 11, 2001, which was 8,977 days ago.

Try the full Epoch Converter to convert any timestamp instantly.

Related Questions