Eastern European Time

Europe/Athens

At a glance

IANA
Europe/Athens
Standard offset
UTC+2 (GMT+2)
DST offset
UTC+3 (GMT+3)
Observes DST?
Yes
Countries
GR
Main cities
Athens, Thessaloníki, Pátra, Piraeus

Also known as

EET

Cities in this timezone

Developer snippets

// JavaScript
new Intl.DateTimeFormat('en-US', { timeZone: 'Europe/Athens' }).format(new Date());

// Python
from zoneinfo import ZoneInfo
from datetime import datetime
datetime.now(ZoneInfo('Europe/Athens'));

// Java
java.time.ZonedDateTime.now(java.time.ZoneId.of('Europe/Athens'));