What Is Epoch 1720000000?

Epoch 1720000000 is July 3, 2024, 9:46:40 UTC (Wednesday).

Breakdown

The Unix timestamp 1720000000 represents exactly 1.7 billion seconds (19,907 days, 9 hours, 46 minutes, 40 seconds) after the Unix epoch (January 1, 1970, 00:00:00 UTC). In ISO 8601 format, this is 2024-07-03T09:46:40Z. The timestamp equals 1.720 billion seconds, and in milliseconds it is 1720000000000.

July 2024. The summer of AI continued with open-weight models becoming increasingly capable. Llama 3.1 405B was released as the largest open model at the time.

UTCWed, 03 Jul 2024 09:46:40 GMT
ISO 86012024-07-03T09:46:40Z
Day of WeekWednesday
US EasternWednesday, July 3, 2024 at 5:46:40 AM EDT
Milliseconds1720000000000
Seconds Since Epoch1,720,000,000

Code Examples

Python

from datetime import datetime, timezone

# Convert epoch 1720000000 to UTC datetime
dt = datetime.fromtimestamp(1720000000, tz=timezone.utc)
print(dt)  # 2024-07-03T09:46:40+00:00

# Format as human-readable string
print(dt.strftime("%A, %B %d, %Y %H:%M:%S UTC"))
# Wednesday, July 3, 2024, 9:46:40 UTC

JavaScript

// Convert epoch 1720000000 to Date
const date = new Date(1720000000 * 1000);
console.log(date.toISOString());  // 2024-07-03T09:46:40Z
console.log(date.toUTCString());  // Wed, 03 Jul 2024 09:46:40 GMT

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

Go

package main

import (
    "fmt"
    "time"
)

func main() {
    t := time.Unix(1720000000, 0).UTC()
    fmt.Println(t.Format(time.RFC3339)) // 2024-07-03T09:46:40Z
    fmt.Println(t.Weekday())            // Wednesday
}

Frequently Asked Questions

How do I convert epoch 1720000000 in Python?

Use datetime.fromtimestamp(1720000000, tz=timezone.utc) from the datetime module. This returns a timezone-aware datetime object representing July 3, 2024, 9:46:40 UTC. For naive datetimes, use datetime.utcfromtimestamp(1720000000), though the timezone-aware version is preferred in modern Python.

What is epoch 1720000000 in milliseconds?

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

Epoch 1720000000 is in the past. It occurred on July 3, 2024, which was 646 days ago.

Try the full Epoch Converter to convert any timestamp instantly.

Related Questions