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.
The most commonly confused abbreviations
CST is one of the most ambiguous abbreviations in use. It refers to US Central Standard Time (UTC−6, America/Chicago), China Standard Time (UTC+8, Asia/Shanghai), Cuba Standard Time (UTC−5, America/Havana), and — less commonly — Central Standard Time in Australia (UTC+9:30, Australia/Darwin). An email reading “the call is at 9am CST” is genuinely unresolvable without knowing the sender’s region.
IST maps to Indian Standard Time (UTC+5:30, Asia/Kolkata), Israel Standard Time (UTC+2, Asia/Jerusalem), and Irish Standard Time (UTC+1, Europe/Dublin, used during summer). Indian Standard Time is unusual in having a 30-minute offset from the hour, one of only a handful of zones worldwide not on a whole-hour boundary.
BST almost always means British Summer Time (UTC+1, Europe/London, the UK’s daylight saving offset), but in some older contexts was also used for Bangladesh Standard Time (UTC+6). Confusion between BST and GMT (UTC±0) is a common error in UK schedules that fail to account for daylight saving.
EST vs EDT. US Eastern Standard Time (EST, UTC−5) is winter time; Eastern Daylight Time (EDT, UTC−4) is summer time. Many scheduling tools write “EST” year-round even during the months when the actual offset is UTC−4, which causes real errors when participants are in countries that do not observe daylight saving.
The case against storing abbreviations
Abbreviations should never be stored in databases or used in data interchange for two reasons. First, they cannot be reliably parsed back to a unique offset without additional context. Any parser that maps “CST” to a fixed offset will be wrong for a significant share of its inputs. Second, abbreviations do not encode daylight saving transitions: “EST” does not tell you what offset the US Eastern zone is using right now.
The correct data storage approach is to record either:
- An absolute UTC timestamp for events that represent a single moment in time (for example when a log entry occurred, or when a payment was processed)
- A UTC timestamp plus an IANA zone name for future events where the local wall-clock time matters (for example “this meeting is at 2pm London time” — store both the UTC equivalent at the time of scheduling and
Europe/Londonso the system can recompute the UTC time if the UK’s daylight saving rules ever change)
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. Use this reference to decode incoming abbreviations from humans or legacy systems, then convert immediately to an IANA zone or UTC offset for any further processing.