What Is Epoch 1790000000?
Epoch 1790000000 is September 21, 2026, 14:13:20 UTC (Monday).
Breakdown
The Unix timestamp 1790000000 represents exactly 1.8 billion seconds (20,717 days, 14 hours, 13 minutes, 20 seconds) after the Unix epoch (January 1, 1970, 00:00:00 UTC). In ISO 8601 format, this is 2026-09-21T14:13:20Z. The timestamp equals 1.790 billion seconds, and in milliseconds it is 1790000000000.
This timestamp falls in September 2026. The continued advancement of AI has reshaped virtually every aspect of software development and deployment.
| UTC | Mon, 21 Sep 2026 14:13:20 GMT |
| ISO 8601 | 2026-09-21T14:13:20Z |
| Day of Week | Monday |
| US Eastern | Monday, September 21, 2026 at 10:13:20 AM EDT |
| Milliseconds | 1790000000000 |
| Seconds Since Epoch | 1,790,000,000 |
Code Examples
Python
from datetime import datetime, timezone
# Convert epoch 1790000000 to UTC datetime
dt = datetime.fromtimestamp(1790000000, tz=timezone.utc)
print(dt) # 2026-09-21T14:13:20+00:00
# Format as human-readable string
print(dt.strftime("%A, %B %d, %Y %H:%M:%S UTC"))
# Monday, September 21, 2026, 14:13:20 UTC
JavaScript
// Convert epoch 1790000000 to Date
const date = new Date(1790000000 * 1000);
console.log(date.toISOString()); // 2026-09-21T14:13:20Z
console.log(date.toUTCString()); // Mon, 21 Sep 2026 14:13:20 GMT
// Get individual components
console.log(date.getUTCFullYear()); // 2026
console.log(date.getUTCMonth() + 1); // 9
Go
package main
import (
"fmt"
"time"
)
func main() {
t := time.Unix(1790000000, 0).UTC()
fmt.Println(t.Format(time.RFC3339)) // 2026-09-21T14:13:20Z
fmt.Println(t.Weekday()) // Monday
}
Frequently Asked Questions
How do I convert epoch 1790000000 in Python?
Use datetime.fromtimestamp(1790000000, tz=timezone.utc) from the datetime module. This returns a timezone-aware datetime object representing September 21, 2026, 14:13:20 UTC. For naive datetimes, use datetime.utcfromtimestamp(1790000000), though the timezone-aware version is preferred in modern Python.
What is epoch 1790000000 in milliseconds?
Epoch 1790000000 in milliseconds is 1790000000000. 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 1790000000 in the past or future?
Epoch 1790000000 is in the future. It will occur on September 21, 2026, which is 163 days from now.
Try the full Epoch Converter to convert any timestamp instantly.