Convert UTC to CET Right Now
To convert from UTC to CET, add 1 hour. UTC is UTC+0 and CET is UTC+1. The difference is 1 hours.
Understanding the UTC to CET Offset
UTC (Coordinated Universal Time) has a UTC offset of UTC+0. CET (Central European Time) has a UTC offset of UTC+1. The net difference between these two zones is 1 hours. When it is noon in UTC, it is 1:00 PM in CET.
Daylight saving time note: UTC does not observe DST. 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 UTC (UTC) and Europe/Berlin (CET). These identifiers are used by programming languages and operating systems to handle timezone conversions correctly, including automatic DST adjustments.
UTC to CET Conversion Table
| UTC | CET |
|---|---|
| 12:00 AM UTC | 1:00 AM CET |
| 3:00 AM UTC | 4:00 AM CET |
| 6:00 AM UTC | 7:00 AM CET |
| 8:00 AM UTC | 9:00 AM CET |
| 9:00 AM UTC | 10:00 AM CET |
| 10:00 AM UTC | 11:00 AM CET |
| 12:00 PM UTC | 1:00 PM CET |
| 2:00 PM UTC | 3:00 PM CET |
| 3:00 PM UTC | 4:00 PM CET |
| 5:00 PM UTC | 6:00 PM CET |
| 6:00 PM UTC | 7:00 PM CET |
| 8:00 PM UTC | 9:00 PM CET |
| 9:00 PM UTC | 10:00 PM CET |
| 11:00 PM UTC | 12:00 AM (+1 day) CET |
Code Examples
Python
from datetime import datetime
from zoneinfo import ZoneInfo
# Current time in UTC
now_from = datetime.now(ZoneInfo("UTC"))
# Convert to CET
now_to = now_from.astimezone(ZoneInfo("Europe/Berlin"))
print(f"UTC: {now_from.strftime('%I:%M %p')}")
print(f"CET: {now_to.strftime('%I:%M %p')}")
JavaScript
// Convert current time from UTC to CET
const now = new Date();
const from = now.toLocaleString("en-US", { timeZone: "UTC" });
const to = now.toLocaleString("en-US", { timeZone: "Europe/Berlin" });
console.log("UTC:", from);
console.log("CET:", to);
Go
package main
import (
"fmt"
"time"
)
func main() {
fromLoc, _ := time.LoadLocation("UTC")
toLoc, _ := time.LoadLocation("Europe/Berlin")
now := time.Now().In(fromLoc)
converted := now.In(toLoc)
fmt.Printf("UTC: %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 UTC and CET?
UTC (Coordinated Universal Time) is UTC+0 and CET (Central European Time) is UTC+1. The standard time difference is 1 hours.
Does daylight saving time affect the UTC to CET conversion?
No, UTC does not observe DST. 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 UTC and CET meetings?
For scheduling meetings between UTC 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 UTC, it is 10:00 AM in CET. When it is 5:00 PM in UTC, it is 6: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.