Central European Time
Arctic/Longyearbyen
At a glance
- IANA
- Arctic/Longyearbyen
- Standard offset
- UTC+1 (GMT+1)
- DST offset
- UTC+2 (GMT+2)
- Observes DST?
- Yes
- Countries
- SJ
- Main cities
- Longyearbyen
Developer snippets
// JavaScript
new Intl.DateTimeFormat('en-US', { timeZone: 'Arctic/Longyearbyen' }).format(new Date());
// Python
from zoneinfo import ZoneInfo
from datetime import datetime
datetime.now(ZoneInfo('Arctic/Longyearbyen'));
// Java
java.time.ZonedDateTime.now(java.time.ZoneId.of('Arctic/Longyearbyen'));