What Is Epoch 1650000000?

Epoch 1650000000 is April 15, 2022, 5:20:00 UTC (Friday).

Breakdown

The Unix timestamp 1650000000 represents exactly 1.6 billion seconds (19,097 days, 5 hours, 20 minutes) after the Unix epoch (January 1, 1970, 00:00:00 UTC). In ISO 8601 format, this is 2022-04-15T05:20:00Z. The timestamp equals 1.650 billion seconds, and in milliseconds it is 1650000000000.

April 2022. The tech industry was at peak valuations before a significant correction. Elon Musk had just made his initial bid to acquire Twitter.

UTCFri, 15 Apr 2022 05:20:00 GMT
ISO 86012022-04-15T05:20:00Z
Day of WeekFriday
US EasternFriday, April 15, 2022 at 1:20:00 AM EDT
Milliseconds1650000000000
Seconds Since Epoch1,650,000,000

Code Examples

Python

from datetime import datetime, timezone

# Convert epoch 1650000000 to UTC datetime
dt = datetime.fromtimestamp(1650000000, tz=timezone.utc)
print(dt)  # 2022-04-15T05:20:00+00:00

# Format as human-readable string
print(dt.strftime("%A, %B %d, %Y %H:%M:%S UTC"))
# Friday, April 15, 2022, 5:20:00 UTC

JavaScript

// Convert epoch 1650000000 to Date
const date = new Date(1650000000 * 1000);
console.log(date.toISOString());  // 2022-04-15T05:20:00Z
console.log(date.toUTCString());  // Fri, 15 Apr 2022 05:20:00 GMT

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

Go

package main

import (
    "fmt"
    "time"
)

func main() {
    t := time.Unix(1650000000, 0).UTC()
    fmt.Println(t.Format(time.RFC3339)) // 2022-04-15T05:20:00Z
    fmt.Println(t.Weekday())            // Friday
}

Frequently Asked Questions

How do I convert epoch 1650000000 in Python?

Use datetime.fromtimestamp(1650000000, tz=timezone.utc) from the datetime module. This returns a timezone-aware datetime object representing April 15, 2022, 5:20:00 UTC. For naive datetimes, use datetime.utcfromtimestamp(1650000000), though the timezone-aware version is preferred in modern Python.

What is epoch 1650000000 in milliseconds?

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

Epoch 1650000000 is in the past. It occurred on April 15, 2022, which was 1,456 days ago.

Try the full Epoch Converter to convert any timestamp instantly.

Related Questions