What is the EST to GMT Converter?
This tool converts a time in Eastern Standard Time (EST) to Greenwich Mean Time (GMT). EST is the standard-time zone for the US East Coast and is fixed at UTC-5. GMT is the time at the Prime Meridian, equivalent to UTC+0. Because GMT is 5 hours ahead of EST, you simply add 5 hours to any EST time to get the GMT equivalent.
How to use it
Enter the hour (0–23, in 24-hour format) and minutes of your EST time. The calculator adds 5 hours and wraps past midnight automatically, giving you the matching GMT clock time. For example, an EST time entered as hour 20 (8 PM) becomes GMT 01:00 the next day.
The formula explained
The conversion uses fixed standard-time offsets: EST = UTC-5 and GMT = UTC+0. The difference between them is 5 hours, so:
$$\text{GMT} = (\text{EST} + 5) \bmod 24$$
The "mod 24" keeps the result on a valid 24-hour clock when adding 5 hours pushes the time past midnight.
Worked example
Suppose it is 09:30 EST. Adding 5 hours: \(9 + 5 = 14\), minutes stay 30. The result is 14:30 GMT (2:30 PM). If it were 23:15 EST, then \(23 + 5 = 28\), and \(28 \bmod 24 = 4\), giving 04:15 GMT the following day.
FAQ
Does this account for Daylight Saving Time? No. This converts EST (standard time, UTC-5). During US daylight time the East Coast uses EDT (UTC-4), which is only 4 hours behind GMT.
Is GMT the same as UTC? For everyday purposes yes — GMT and UTC are both UTC+0. UTC is the technical successor but the clock time is identical.
Why add 5 hours? Because GMT is east of the Eastern US, GMT is ahead. EST clocks read 5 hours earlier than GMT clocks.