What Is Epoch 1300000000?

Epoch 1300000000 is March 13, 2011, 7:06:40 UTC (Sunday).

Breakdown

The Unix timestamp 1300000000 represents exactly 1.3 billion seconds (15,046 days, 7 hours, 6 minutes, 40 seconds) after the Unix epoch (January 1, 1970, 00:00:00 UTC). In ISO 8601 format, this is 2011-03-13T07:06:40Z. The timestamp equals 1.300 billion seconds, and in milliseconds it is 1300000000000.

The 1.3 billion milestone hit in March 2011, just days after the Tohoku earthquake and tsunami in Japan. The tech world was witnessing the rapid rise of cloud computing.

UTCSun, 13 Mar 2011 07:06:40 GMT
ISO 86012011-03-13T07:06:40Z
Day of WeekSunday
US EasternSunday, March 13, 2011 at 3:06:40 AM EDT
Milliseconds1300000000000
Seconds Since Epoch1,300,000,000

Code Examples

Python

from datetime import datetime, timezone

# Convert epoch 1300000000 to UTC datetime
dt = datetime.fromtimestamp(1300000000, tz=timezone.utc)
print(dt)  # 2011-03-13T07:06:40+00:00

# Format as human-readable string
print(dt.strftime("%A, %B %d, %Y %H:%M:%S UTC"))
# Sunday, March 13, 2011, 7:06:40 UTC

JavaScript

// Convert epoch 1300000000 to Date
const date = new Date(1300000000 * 1000);
console.log(date.toISOString());  // 2011-03-13T07:06:40Z
console.log(date.toUTCString());  // Sun, 13 Mar 2011 07:06:40 GMT

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

Go

package main

import (
    "fmt"
    "time"
)

func main() {
    t := time.Unix(1300000000, 0).UTC()
    fmt.Println(t.Format(time.RFC3339)) // 2011-03-13T07:06:40Z
    fmt.Println(t.Weekday())            // Sunday
}

Frequently Asked Questions

How do I convert epoch 1300000000 in Python?

Use datetime.fromtimestamp(1300000000, tz=timezone.utc) from the datetime module. This returns a timezone-aware datetime object representing March 13, 2011, 7:06:40 UTC. For naive datetimes, use datetime.utcfromtimestamp(1300000000), though the timezone-aware version is preferred in modern Python.

What is epoch 1300000000 in milliseconds?

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

Epoch 1300000000 is in the past. It occurred on March 13, 2011, which was 5,507 days ago.

Try the full Epoch Converter to convert any timestamp instantly.

Related Questions