IST means three different things and your invitation does not say which
India Standard Time, Irish Standard Time and Israel Standard Time all abbreviate to IST — and they are up to four and a half hours apart.
Three zones, one abbreviation
| Meaning | Offset | IANA zone |
|---|---|---|
| India Standard Time | UTC+5:30 | Asia/Kolkata |
| Irish Standard Time | UTC+1 | Europe/Dublin |
| Israel Standard Time | UTC+2 | Asia/Jerusalem |
An invitation for "3pm IST" could mean three different instants, the furthest apart being four and a half hours. That is enough to miss a meeting entirely.
It is not the only offender
- CST — North American Central (UTC−6), China Standard (UTC+8), Cuba Standard (UTC−5).
- BST — British Summer Time (UTC+1), Bangladesh Standard Time (UTC+6).
- AST — Atlantic Standard Time (UTC−4), Arabia Standard Time (UTC+3).
- AMT — Amazon Time (UTC−4), Armenia Time (UTC+4).
Why abbreviations are like this
Nobody owns them. There is no standards body assigning time zone abbreviations, so they grew up locally and collided. The IANA time zone database, which operating systems and programming languages actually use, avoids the problem by naming zones after a representative city — Asia/Kolkata, Europe/Dublin — which is unique by construction.
How to write it instead
In systems, use the IANA identifier. In writing to humans, qualify the abbreviation:
3:00pm IST (India, UTC+5:30)
Four extra words remove the ambiguity completely. Better still, send a calendar invitation and let the software carry the zone.
The US abbreviations have their own problem
Americans write EST year-round, including in July when the east coast is on EDT. It is technically wrong and almost always harmless domestically — but it stops being harmless the moment a European reads it literally and books against UTC−5 in the middle of summer.
| Written | Winter meaning | Summer meaning |
|---|---|---|
| EST | UTC−5 (correct) | Usually means EDT, UTC−4 |
| CST | UTC−6 | Usually means CDT, UTC−5 |
| PST | UTC−8 | Usually means PDT, UTC−7 |
| GMT | UTC+0 (correct) | UK is actually on BST, UTC+1 |
A rule that works in practice
Write the city rather than the abbreviation. "2pm New York" is unambiguous in every month, needs no knowledge of daylight saving, and is shorter than explaining which of EST and EDT you meant.
For anything that reaches software
- Store
America/New_York, neverESTor-05:00. - Validate user-supplied zone strings against the IANA list rather than accepting free text.
- Display the offset next to the zone in your interface, so users can sanity-check it themselves.
The wider list of collisions
Beyond IST and CST, watch for AST (Atlantic vs Arabia), AMT (Amazon vs Armenia), ECT (Ecuador vs Central Europe) and WST (Western Samoa vs Western Australia in older usage). None of them is resolvable without context.
Filed under Reference · Tags: ist, abbreviations, iana. Figures verified against the official definitions — see our editorial policy.