Time & date calculator

Time Zone Converter

Convert any date and time between time zones — EST, IST, GMT, UTC, CET, PST, or any IANA zone worldwide — with automatic, live daylight-saving handling and a same-instant world clock across several cities at once.

Live DST handling World clock view No fixed offset table

Uses your browser’s live time zone database — not a hand-maintained offset table.

Convert this date & time

Popular conversions

Add another time zone to compare

Source time

Asia / Calcutta

Wed, Aug 5, 2026, 17:20

GMT+5:30 · UTC+05:30

Converted

Eastern Time — New York (EST/EDT)

Wed, Aug 5, 2026, 07:50

EDT · UTC-04:00 · observing DST

UK Time — London (GMT/BST)

Wed, Aug 5, 2026, 12:50

GMT+1 · UTC+01:00 · observing DST

India Standard Time — Mumbai/Delhi/Bengaluru (IST)

Wed, Aug 5, 2026, 17:20

GMT+5:30 · UTC+05:30

Japan Standard Time — Tokyo (JST)

Wed, Aug 5, 2026, 20:50

GMT+9 · UTC+09:00

Popular time zone conversions

These are the conversions people look up most often. Each one uses the calculator above with live data, so the offset shown always reflects whether daylight saving is currently in effect — unlike a printed conversion chart.

  • EST to IST — US Eastern Time to India Standard Time, typically 10.5 hours apart in winter (EST) and 9.5 hours in summer (EDT), since India does not observe daylight saving.
  • IST to EST/PST (India to USA) — India Standard Time is a single, fixed offset (UTC+05:30) year-round, so the gap to any US zone shifts by an hour whenever the US zone changes for daylight saving.
  • IST to GMT/BST (India to UK) — 5.5 hours in UK winter, 4.5 hours in UK summer (BST).
  • UTC / GMT / Zulu time — UTC never shifts for daylight saving; “Zulu” is aviation/military shorthand for the exact same instant as UTC.
  • CET to GMT — Central European Time is normally 1 hour ahead of UK time, in both the winter and summer halves of the year, because both regions shift their clocks on close to the same dates.

How this converter works

Converting a time between zones takes two steps: first, turn the date/time you typed — as observed in the zone you say it’s in — into a single, unambiguous instant (this is what computers store internally, usually as a count of seconds since 1 January 1970 UTC). Second, re-express that same instant as a wall-clock date and time in each target zone.

Step 1 — resolve to an instant

instant = wall time − zone offset at that moment

The offset is looked up for the specific date, not assumed fixed — this is what makes DST handling correct.

Step 2 — re-express per zone

wall time = instant + target zone’s offset

Repeated once per zone you’re comparing against.

This calculator does not hard-code any zone’s offset or DST start/end dates. Both steps ask the browser’s built-in Intl time zone API, which is backed by the IANA Time Zone Database (see Sources) — the same database used by Linux, macOS, Windows, Android, and iOS. That is a deliberate choice: a hand-maintained offset table would silently go wrong the next time any country changes its DST rules, which happens most years somewhere in the world.

Worked examples

Reading a time across zones

On 15 January 2026 (northern-hemisphere winter), it’s 2:00 PM in New York — Eastern Standard Time, UTC−05:00, not observing daylight saving on this date. Step 1: 14:00 − (−05:00) = 19:00 UTC. Step 2, re-expressed: London is on GMT in January (UTC+00:00), so it’s also 19:00 there; Mumbai is on IST (UTC+05:30) year-round, so 19:00 + 05:30 = 00:30 the next day — this is exactly the kind of cross-midnight case the calculator flags with a “+1 day” marker.

Scheduling a call

You want to schedule a call for 9:00 AM Pacific Time (Los Angeles) on a date when the US is observing standard time (PST, UTC−08:00). Step 1: 09:00 − (−08:00) = 17:00 UTC. Step 2: Berlin is on CET in winter (UTC+01:00), so 17:00 + 01:00 = 18:00 the same day; Tokyo does not observe daylight saving (JST, UTC+09:00 year-round), so 17:00 + 09:00 = 02:00 the next day — worth double-checking with your Tokyo colleagues before you book the room.

Time zone reference table

Standard-time offsets for commonly searched zones. The live calculator above always computes the exact, currently-correct offset for the date you enter — this table is a quick static reference, so it clearly separates each zone’s standard-time offset from its daylight-saving offset rather than picking one and letting it go stale for half the year.

Common time zones with standard and daylight-saving UTC offsets
ZoneStandard timeDaylight saving
UTC / GMTUTC±00:00Does not observe DST
US Eastern (New York)EST, UTC−05:00EDT, UTC−04:00
US Central (Chicago)CST, UTC−06:00CDT, UTC−05:00
US Mountain (Denver)MST, UTC−07:00MDT, UTC−06:00
US Pacific (Los Angeles)PST, UTC−08:00PDT, UTC−07:00
UK (London)GMT, UTC+00:00BST, UTC+01:00
Central Europe (Paris, Berlin)CET, UTC+01:00CEST, UTC+02:00
India (Kolkata)IST, UTC+05:30Does not observe DST
Gulf (Dubai)GST, UTC+04:00Does not observe DST
China (Shanghai)CST, UTC+08:00Does not observe DST
Japan (Tokyo)JST, UTC+09:00Does not observe DST
Australia Eastern (Sydney)AEST, UTC+10:00AEDT, UTC+11:00 (Oct–Apr, opposite hemisphere)
New Zealand (Auckland)NZST, UTC+12:00NZDT, UTC+13:00 (Sep–Apr, opposite hemisphere)

Limitations

  • Depends on an up-to-date device. This calculator reads your browser’s copy of the IANA Time Zone Database. When a country changes its DST rules or standard offset with little notice, there can be a short window before browsers and operating systems ship the update — during that window, dates in the affected zone could be off by an hour.
  • No leap-second handling. Like virtually all consumer software, this tool works in civil (UTC) time and does not model the occasional leap second added to keep UTC aligned with the Earth’s rotation — irrelevant for everyday scheduling, but worth knowing for scientific timing use.
  • Ambiguous and skipped local times near a DST transition. On the day clocks move back, one local hour occurs twice; on the day they move forward, one local hour never occurs at all. This calculator resolves those edge cases automatically using the same logic as your operating system, but a manually-entered time that technically doesn’t exist (e.g. 2:30 AM on a “spring forward” day in a zone that skips it) will be interpreted as the nearest valid instant rather than rejected.
  • Zone abbreviations are for display only. As covered in the FAQs, the same three-letter abbreviation can mean different offsets in different countries — the calculator’s actual conversion always uses an unambiguous IANA zone identifier, never the abbreviation.

Sources and methodology

Zone and DST data: this calculator does not maintain its own offset table. Every conversion is computed live from the browser’s built-in time zone database, which implements the IANA Time Zone Database (also called tz database or zoneinfo) — the authoritative source used by nearly every operating system and programming language worldwide.

Instant resolution: the two-step wall-time ↔ UTC-instant method described in How this converter works is the standard approach used by time zone libraries generally, not a bespoke algorithm.

Frequently asked questions

What is UTC and how is it different from GMT?

UTC (Coordinated Universal Time) is the modern time standard the world’s clocks are set against — it never changes for daylight saving. GMT (Greenwich Mean Time) is, in practice, the same instant as UTC almost all of the time, but GMT is also the name of the UK’s own time zone, which shifts to BST (UTC+1) every summer. So "UTC" and "the current UK time zone" are only identical for part of the year — this calculator treats UTC as fixed and lets you pick "Europe/London" separately if you specifically want UK local time.

What does "Zulu time" mean?

Zulu time is aviation, military, and maritime shorthand for UTC, written with a "Z" suffix (e.g. 14:00Z). It is exactly the same instant as UTC — choosing "UTC" in this converter gives you Zulu time.

How does daylight saving time (DST) affect this converter?

Many zones (most of the US, Canada, the UK, and the EU, for example) shift their clocks forward about an hour in spring and back in autumn. This calculator does not use a fixed offset table — it asks your browser’s built-in time zone database for the exact offset at the specific date and time you entered, so it automatically accounts for DST, including on dates where the offset is different from today.

Why do some converted times show a +1 day or −1 day next to them?

Because the time difference plus the hour you entered pushes the converted time past midnight into the next calendar day, or back before midnight into the previous day, in that zone. The (+1 day)/(−1 day) marker tells you the converted time is correct but falls on a different date than the one you entered — a common source of scheduling mistakes if it’s missed.

What time zone is EST? What about IST, CET, and PST?

EST (Eastern Standard Time, UTC−05:00) covers the US East Coast and shifts to EDT (UTC−04:00) in summer. IST (India Standard Time, UTC+05:30) covers all of India and does not observe DST. CET (Central European Time, UTC+01:00) covers most of continental Europe and shifts to CEST (UTC+02:00) in summer. PST (Pacific Standard Time, UTC−08:00) covers the US West Coast and shifts to PDT (UTC−07:00) in summer. This calculator shows the exact abbreviation and offset in effect for whatever date you enter, not just the standard-time label.

Does this converter use real time zone data, or a fixed offset table?

Real data. It calls your browser’s built-in Intl time zone API, which is backed by the IANA Time Zone Database — the same dataset used by nearly every operating system, and updated automatically when your browser or OS updates. Nothing about zone rules or DST dates is hand-maintained on this page, so there is no static table to go stale.

Can this converter handle historical or future dates?

Yes, within the range your browser’s time zone database covers (typically many decades back and forward). Keep in mind that some countries have changed their time zone rules, DST start/end dates, or even their standard offset over the years — the calculator applies whatever rule was or will be in effect for the date you enter, according to the current IANA database, which is the same standard historians and software worldwide rely on.

Why doesn’t India (IST) observe daylight saving time?

India uses a single time zone across the whole country (UTC+05:30) and has not observed DST since a brief wartime experiment in 1942–45. Because India spans a relatively narrow range of longitudes north-to-south compared with its east-west spread, the practical benefit of shifting clocks seasonally is smaller than in higher-latitude countries, and IST has stayed fixed year-round since.

What’s the time difference between India and the US?

It depends which US zone and whether the US zone is observing daylight saving. India (IST, UTC+05:30) is typically 9.5 hours ahead of US Eastern Time (10.5 hours ahead of EST in winter, 9.5 ahead of EDT in summer) and 12.5–13.5 hours ahead of US Pacific Time. Use the "IST to EST" and "IST to PST" quick-select buttons above for the exact current difference.

What’s the time difference between India and the UK?

India (IST, UTC+05:30) is 5.5 hours ahead of UK winter time (GMT, UTC+00:00) and 4.5 hours ahead of UK summer time (BST, UTC+01:00). Use the "IST to GMT/BST" quick-select above to see today’s exact difference.

Does this also convert Unix timestamps or Discord timestamps?

Not yet — this page converts a human date and time between time zones. A dedicated Unix timestamp / Discord timestamp converter (for generating Discord’s <t:...> message-formatting codes) is planned as a separate tool. This page is the right one for "what time is it there" and scheduling-style conversions.

Why does the same abbreviation sometimes mean different offsets in different countries?

Time zone abbreviations are not globally unique. "CST", for example, is used for US Central Standard Time (UTC−06:00) and also for China Standard Time (UTC+08:00) — a 14-hour difference for the same three letters. Because of this ambiguity, this calculator always shows the full UTC offset next to any abbreviation, and the underlying conversion always uses an unambiguous IANA zone identifier (like America/Chicago or Asia/Shanghai), never the abbreviation alone.

Is this the same as a military time converter?

Related but not identical. This calculator already displays times in 24-hour format (e.g. 14:00 rather than 2:00 PM), which is what "military time" refers to — but a dedicated military-time tool for converting a specific 12-hour clock time to 24-hour notation (without also changing time zones) is planned separately for cases where no zone conversion is needed at all.

Does the calculator detect my own time zone automatically?

Yes — on load, it reads your device’s time zone setting and current time as the starting point, which you can then change to any zone and any date/time. If your device’s time zone or clock is set incorrectly, that starting point will be off, so it’s worth checking your device settings if the auto-filled time looks wrong.

Time & date disclaimer

Times are computed live from your browser’s built-in time zone database (the IANA/tz database), which is accurate for essentially all current use but relies on your browser and operating system being reasonably up to date — a device that hasn’t updated recently may not yet reflect a very recently changed political time zone or daylight-saving rule in a specific country. This tool does not model leap seconds. For legal, contractual, travel, or safety-critical timing — flight departures, court deadlines, financial settlement windows — confirm the exact local time with an authoritative source for that specific location and date.

How we calculate · email us

Authorship & verification

Written and maintained by

  • Formula and examples verified on 5 August 2026
  • Educational estimate only

Add this calculator to your site

Responsive embed — and private: nothing your visitors type leaves their browser.