Eastern European Time

Europe/Riga

At a glance

IANA
Europe/Riga
Standard offset
UTC+2 (GMT+2)
DST offset
UTC+3 (GMT+3)
Observes DST?
Yes
Countries
LV
Main cities
Riga, Daugavpils, Liepāja, Jelgava

Developer snippets

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

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

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