Moscow Time
Europe/Simferopol
At a glance
- IANA
- Europe/Simferopol
- Standard offset
- UTC+3 (GMT+3)
- Observes DST?
- No
- Countries
- UA
- Main cities
- Sevastopol, Simferopol, Kerch, Yevpatoriya
Developer snippets
// JavaScript
new Intl.DateTimeFormat('en-US', { timeZone: 'Europe/Simferopol' }).format(new Date());
// Python
from zoneinfo import ZoneInfo
from datetime import datetime
datetime.now(ZoneInfo('Europe/Simferopol'));
// Java
java.time.ZonedDateTime.now(java.time.ZoneId.of('Europe/Simferopol'));