worldclock.tools

Converters & time math

Timezone abbreviation lookup

What does EST, CEST, or AEST actually mean? Search the abbreviations you run into and get the real offset and region — with the ambiguous ones honestly flagged.

AbbrNameRegionOffset
UTCCoordinated Universal TimeGlobalUTC+0
GMTGreenwich Mean TimeUK, West AfricaUTC+0
WETWestern European TimePortugal, IrelandUTC+0
BSTBritish Summer TimeUK (summer)UTC+1
CETCentral European TimeContinental EuropeUTC+1
CESTCentral European Summer TimeEurope (summer)UTC+2
EETEastern European TimeEastern EuropeUTC+2
EESTEastern European Summer TimeEastern Europe (summer)UTC+3
MSKMoscow Standard TimeRussia (west)UTC+3
GSTGulf Standard TimeUAE, OmanUTC+4
PKTPakistan Standard TimePakistanUTC+5
ISTIndia Standard TimeIndia, Sri LankaUTC+5:30
ISTIrish Standard TimeIreland (summer)UTC+1
BSTBangladesh Standard TimeBangladeshUTC+6
ICTIndochina TimeThailand, VietnamUTC+7
CSTChina Standard TimeChinaUTC+8
SGTSingapore TimeSingaporeUTC+8
HKTHong Kong TimeHong KongUTC+8
AWSTAustralian Western Standard TimeWestern AustraliaUTC+8
JSTJapan Standard TimeJapanUTC+9
KSTKorea Standard TimeSouth KoreaUTC+9
ACSTAustralian Central Standard TimeCentral AustraliaUTC+9:30
AESTAustralian Eastern Standard TimeEastern AustraliaUTC+10
AEDTAustralian Eastern Daylight TimeEastern Australia (summer)UTC+11
NZSTNew Zealand Standard TimeNew ZealandUTC+12
HSTHawaii Standard TimeHawaiiUTC−10
AKSTAlaska Standard TimeAlaskaUTC−9
PSTPacific Standard TimeUS & Canada (west)UTC−8
PDTPacific Daylight TimeUS & Canada (west, summer)UTC−7
MSTMountain Standard TimeUS & Canada (mountain)UTC−7
MDTMountain Daylight TimeUS & Canada (mountain, summer)UTC−6
CSTCentral Standard TimeUS & Canada (central)UTC−6
CDTCentral Daylight TimeUS & Canada (central, summer)UTC−5
ESTEastern Standard TimeUS & Canada (east)UTC−5
EDTEastern Daylight TimeUS & Canada (east, summer)UTC−4
ASTAtlantic Standard TimeCaribbean, Canada (Atlantic)UTC−4
BRTBrasília TimeBrazil (east)UTC−3

Flagged abbreviations are ambiguous — IST, CST, and BST each mean different things in different regions. When in doubt, use the full IANA zone name.

How to use the timezone abbreviation lookup

  1. Look up the abbreviation

    Type the code you have found — EST, CET, AEST, IST — and see which zones and offsets it can refer to.

  2. Check for collisions

    Several abbreviations map to more than one real offset. If more than one result comes back, the abbreviation alone is not enough to interpret the timestamp.

  3. Note standard versus daylight

    Most regions have two codes: a standard one and a summer one. EST and EDT differ by an hour, and people write EST when they mean EDT constantly.

  4. Translate to an IANA zone

    Take the unambiguous zone identifier — America/New_York rather than EST — and use that anywhere the value gets stored or sent.

Why time zone abbreviations are unreliable

Abbreviations are not standardised and not unique. IST is India Standard Time (UTC+5:30), Irish Standard Time (UTC+1) and Israel Standard Time (UTC+2). CST covers North America's Central Standard Time (UTC−6), China Standard Time (UTC+8) and Cuba Standard Time (UTC−5). A timestamp labelled with either is genuinely ambiguous, and no amount of context always resolves it.

There is also the standard-versus-daylight mistake, which is close to universal. From March to November, the United States east coast is on EDT, not EST — yet almost everyone writes EST all year. Usually the reader guesses right; occasionally they do not, and a meeting is an hour off. "ET" is the honest way to write it when you mean "whatever the east coast is on".

This is exactly why the IANA time zone database uses geographic identifiers instead. America/New_York names a region with a history of rules, so it resolves correctly for any date, past or future, and cannot collide with a zone on another continent. Every serious date library and database speaks it.

The practical rule: read abbreviations, because people will keep sending them, but never write them into anything a machine will parse. In storage and in APIs, use UTC instants or IANA zone identifiers, and keep the abbreviation for the human-facing label at the very end.

When you'd reach for it

Decoding an email

Work out which offset a colleague meant when they wrote a bare abbreviation.

Reading a schedule

Interpret a conference or broadcast time listed with a code you do not recognise.

Migrating stored data

Map legacy abbreviation columns onto proper IANA identifiers.

Reviewing a bug report

Establish what a timestamp in an issue actually referred to.

Writing documentation

Choose an unambiguous way to express times for an international readership.

Checking a contract

Confirm the offset a legally significant deadline was expressed in.

Questions & answers

Why is one abbreviation listed twice?
Some abbreviations are genuinely ambiguous. IST means both India Standard Time (+5:30) and Irish Standard Time (+1); CST covers US Central (−6) and China Standard (+8). Both meanings are listed and flagged.
Are standard and daylight abbreviations different?
Yes. Many zones switch abbreviation in summer — EST becomes EDT, CET becomes CEST, PST becomes PDT — each with a different offset. Both are included.
Should I use abbreviations in code or invites?
Prefer full IANA names like America/New_York. Abbreviations are convenient for reading but ambiguous, so they're risky for scheduling and software.