What Is Epoch 1234567890?

Epoch 1234567890 is February 13, 2009, 23:31:30 UTC (Friday).

Breakdown

The Unix timestamp 1234567890 represents exactly 1.2 billion seconds (14,288 days, 23 hours, 31 minutes, 30 seconds) after the Unix epoch (January 1, 1970, 00:00:00 UTC). In ISO 8601 format, this is 2009-02-13T23:31:30Z. The timestamp equals 1.235 billion seconds, and in milliseconds it is 1234567890000.

A famous sequential timestamp (1-2-3-4-5-6-7-8-9-0) that fell on Friday the 13th of February 2009. Developers and sysadmins celebrated "Unix time 1234567890" parties worldwide.

UTCFri, 13 Feb 2009 23:31:30 GMT
ISO 86012009-02-13T23:31:30Z
Day of WeekFriday
US EasternFriday, February 13, 2009 at 6:31:30 PM EST
Milliseconds1234567890000
Seconds Since Epoch1,234,567,890

Code Examples

Python

from datetime import datetime, timezone

# Convert epoch 1234567890 to UTC datetime
dt = datetime.fromtimestamp(1234567890, tz=timezone.utc)
print(dt)  # 2009-02-13T23:31:30+00:00

# Format as human-readable string
print(dt.strftime("%A, %B %d, %Y %H:%M:%S UTC"))
# Friday, February 13, 2009, 23:31:30 UTC

JavaScript

// Convert epoch 1234567890 to Date
const date = new Date(1234567890 * 1000);
console.log(date.toISOString());  // 2009-02-13T23:31:30Z
console.log(date.toUTCString());  // Fri, 13 Feb 2009 23:31:30 GMT

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

Go

package main

import (
    "fmt"
    "time"
)

func main() {
    t := time.Unix(1234567890, 0).UTC()
    fmt.Println(t.Format(time.RFC3339)) // 2009-02-13T23:31:30Z
    fmt.Println(t.Weekday())            // Friday
}

Frequently Asked Questions

How do I convert epoch 1234567890 in Python?

Use datetime.fromtimestamp(1234567890, tz=timezone.utc) from the datetime module. This returns a timezone-aware datetime object representing February 13, 2009, 23:31:30 UTC. For naive datetimes, use datetime.utcfromtimestamp(1234567890), though the timezone-aware version is preferred in modern Python.

What is epoch 1234567890 in milliseconds?

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

Epoch 1234567890 is in the past. It occurred on February 13, 2009, which was 6,265 days ago.

Try the full Epoch Converter to convert any timestamp instantly.

Related Questions