Greenwich Mean Time
Africa/Lome
At a glance
- IANA
- Africa/Lome
- Standard offset
- UTC+0 (GMT)
- Observes DST?
- No
- Countries
- TG
- Main cities
- Lomé, Sokodé, Kara, Atakpamé
Developer snippets
// JavaScript
new Intl.DateTimeFormat('en-US', { timeZone: 'Africa/Lome' }).format(new Date());
// Python
from zoneinfo import ZoneInfo
from datetime import datetime
datetime.now(ZoneInfo('Africa/Lome'));
// Java
java.time.ZonedDateTime.now(java.time.ZoneId.of('Africa/Lome'));