Convert EST to CET Right Now

To convert from EST to CET, add 6 hours. EST is UTC-5 and CET is UTC+1. The difference is 6 hours.

Understanding the EST to CET Offset

EST (Eastern Standard Time) has a UTC offset of UTC-5. CET (Central European Time) has a UTC offset of UTC+1. The net difference between these two zones is 6 hours. When it is noon in EST, it is 6:00 PM in CET.

Daylight saving time note: EST observes DST (becomes EDT, UTC-4). CET observes DST (becomes CEST, UTC+2). During DST periods, the offset between these zones may change by 1 hour. The table below shows standard time offsets.

The IANA timezone identifiers for these zones are America/New_York (EST) and Europe/Berlin (CET). These identifiers are used by programming languages and operating systems to handle timezone conversions correctly, including automatic DST adjustments.

EST to CET Conversion Table

ESTCET
12:00 AM EST6:00 AM CET
3:00 AM EST9:00 AM CET
6:00 AM EST12:00 PM CET
8:00 AM EST2:00 PM CET
9:00 AM EST3:00 PM CET
10:00 AM EST4:00 PM CET
12:00 PM EST6:00 PM CET
2:00 PM EST8:00 PM CET
3:00 PM EST9:00 PM CET
5:00 PM EST11:00 PM CET
6:00 PM EST12:00 AM (+1 day) CET
8:00 PM EST2:00 AM (+1 day) CET
9:00 PM EST3:00 AM (+1 day) CET
11:00 PM EST5:00 AM (+1 day) CET

Code Examples

Python

from datetime import datetime
from zoneinfo import ZoneInfo

# Current time in EST
now_from = datetime.now(ZoneInfo("America/New_York"))
# Convert to CET
now_to = now_from.astimezone(ZoneInfo("Europe/Berlin"))
print(f"EST: {now_from.strftime('%I:%M %p')}")
print(f"CET: {now_to.strftime('%I:%M %p')}")

JavaScript

// Convert current time from EST to CET
const now = new Date();
const from = now.toLocaleString("en-US", { timeZone: "America/New_York" });
const to = now.toLocaleString("en-US", { timeZone: "Europe/Berlin" });
console.log("EST:", from);
console.log("CET:", to);

Go

package main

import (
    "fmt"
    "time"
)

func main() {
    fromLoc, _ := time.LoadLocation("America/New_York")
    toLoc, _ := time.LoadLocation("Europe/Berlin")
    now := time.Now().In(fromLoc)
    converted := now.In(toLoc)
    fmt.Printf("EST: %s\n", now.Format("3:04 PM"))
    fmt.Printf("CET: %s\n", converted.Format("3:04 PM"))
}

Frequently Asked Questions

What is the time difference between EST and CET?

EST (Eastern Standard Time) is UTC-5 and CET (Central European Time) is UTC+1. The standard time difference is 6 hours. This difference may change during daylight saving time transitions if the two zones do not switch on the same dates.

Does daylight saving time affect the EST to CET conversion?

Yes, EST observes DST and shifts to EDT (UTC-4) during summer months. CET observes DST and shifts to CEST (UTC+2) during summer months. Always use IANA timezone identifiers in code to automatically handle these transitions.

What are the best overlap hours for EST and CET meetings?

For scheduling meetings between EST and CET, look for hours when both zones are in typical business hours (9 AM to 5 PM). When it is 9:00 AM in EST, it is 3:00 PM in CET. When it is 5:00 PM in EST, it is 11:00 PM in CET. The best overlap window depends on the specific zones and whether DST is active.

Try the full Timezone Converter for any time and zone pair.

Related Questions