Central European Time
Europe/Zurich
At a glance
- IANA
- Europe/Zurich
- Standard offset
- UTC+1 (GMT+1)
- DST offset
- UTC+2 (GMT+2)
- Observes DST?
- Yes
- Countries
- CH
- Main cities
- Zürich, Genève, Basel, Lausanne
Also known as
Europe/Busingen, Europe/Vaduz
Developer snippets
// JavaScript
new Intl.DateTimeFormat('en-US', { timeZone: 'Europe/Zurich' }).format(new Date());
// Python
from zoneinfo import ZoneInfo
from datetime import datetime
datetime.now(ZoneInfo('Europe/Zurich'));
// Java
java.time.ZonedDateTime.now(java.time.ZoneId.of('Europe/Zurich'));