GMT — Greenwich Mean Time

GMT is Greenwich Mean Time, +00:00, used in Europe / Africa. In code, use Etc/GMT rather than the abbreviation.

Greenwich Mean Time · Europe / Africa
00:26:03
Thursday, 13 August 2026
abbreviation denotes
+00:00
in force right now
GMT (UTC+00:00)
use in code
Etc/GMT
next clock change
none — fixed offset

Equal to UTC in practice. The UK uses it in winter only.

utc → GMT GMT → utc

Use the IANA name, not the abbreviation

Python
from datetime import datetime
from zoneinfo import ZoneInfo

# right: an IANA zone carries the full history of rule changes
now = datetime.now(ZoneInfo("Etc/GMT"))
print(now.isoformat(), now.tzname())

# wrong: an abbreviation is not resolvable, and a hard-coded offset
# silently rots the next time the rules change
# now = datetime.now(timezone(timedelta(hours=...)))  # don't

GMT questions

What does GMT stand for?
GMT is Greenwich Mean Time, +00:00, used in Europe / Africa. The IANA zone to use in code is Etc/GMT.
What time is it in GMT right now?
Greenwich Mean Time: 00:26 on Thursday (GMT).
Which IANA timezone should I use instead of GMT?
Etc/GMT for Greenwich Mean Time. Date libraries cannot resolve bare abbreviations, and an abbreviation carries no daylight-saving history, so a stored offset silently rots when a government changes the rules.

Other abbreviations

Keyboard shortcuts

cCopy the ISO 8601 timestamp
uCopy the Unix timestamp
/Focus the timezone search
tToggle light and dark
?This help
EscClose