Central European Time
Europe/Warsaw
At a glance
- IANA
- Europe/Warsaw
- Standard offset
- UTC+1 (GMT+1)
- DST offset
- UTC+2 (GMT+2)
- Observes DST?
- Yes
- Countries
- PL
- Main cities
- Warsaw, Łódź, Kraków, Wrocław
Also known as
Poland
Developer snippets
// JavaScript
new Intl.DateTimeFormat('en-US', { timeZone: 'Europe/Warsaw' }).format(new Date());
// Python
from zoneinfo import ZoneInfo
from datetime import datetime
datetime.now(ZoneInfo('Europe/Warsaw'));
// Java
java.time.ZonedDateTime.now(java.time.ZoneId.of('Europe/Warsaw'));