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