Central Africa Time
Africa/Windhoek
At a glance
- IANA
- Africa/Windhoek
- Standard offset
- UTC+2 (GMT+2)
- Observes DST?
- No
- Countries
- NA
- Main cities
- Windhoek, Rundu, Walvis Bay, Swakopmund
Developer snippets
// JavaScript
new Intl.DateTimeFormat('en-US', { timeZone: 'Africa/Windhoek' }).format(new Date());
// Python
from zoneinfo import ZoneInfo
from datetime import datetime
datetime.now(ZoneInfo('Africa/Windhoek'));
// Java
java.time.ZonedDateTime.now(java.time.ZoneId.of('Africa/Windhoek'));