Time zone abbreviations are convenient in conversation but treacherous in data: CST, IST, BST, and many others map to several different offsets depending on the region. This searchable reference resolves common abbreviations to their offset, full name, and a representative IANA zone, and clearly flags the ambiguous ones.
How it works
An abbreviation like EST is just a label a region uses for one of its offsets. The same letters are reused worldwide, so the only reliable mapping goes through context: which country, and which season. Daylight saving adds a second layer, since most northern-hemisphere zones swap between a standard abbreviation (EST) and a daylight one (EDT) twice a year.
The robust solution in software is the IANA time zone database, which names
regions by Continent/City and records their full offset history. The reference
below lists each abbreviation’s typical offset and one representative IANA zone.
Example
Searching CST returns three entries: US Central Standard Time (UTC−6,
America/Chicago), China Standard Time (UTC+8, Asia/Shanghai), and Cuba Standard
Time (UTC−5, America/Havana). The ambiguity flag warns you not to rely on the
abbreviation alone.
Notes
When sending timestamps between systems, prefer an ISO 8601 string with a numeric
offset, such as 2026-06-06T14:30:00+01:00, or store UTC plus an IANA zone for
future local times. Never round-trip a bare abbreviation — it cannot be parsed
back into a single offset.