What this converter does
This tool converts a time in EST (US Eastern Standard Time) to UTC (Coordinated Universal Time). EST is a fixed offset of UTC-5, which is used in the US Eastern time zone during the standard (winter) part of the year. Note: during Daylight Saving Time the Eastern zone uses EDT (UTC-4); this calculator assumes standard EST (UTC-5).
How to use it
Enter the hour (0-23, in 24-hour format) and minute of the EST time you want to convert. The calculator adds 5 hours and shows the equivalent UTC time, flagging whether the result rolls into the next UTC day.
The formula
Because EST = UTC-5, the conversion is simply \(\text{UTC} = \text{EST} + 5\) hours. To keep the clock within 0-23, we take the result modulo 24 hours. If adding 5 hours pushes the time past midnight, the UTC date advances by one day.
$$\text{UTC} = \left( \text{Hour (EST)} \times 60 + \text{Minute} + 5 \times 60 \right) \bmod 1440$$
Worked example
Take 9:30 PM EST, which is 21:30. Add 5 hours: \(21{:}30 + 5{:}00 = 26{:}30\). Subtract 24 hours to wrap: \(02{:}30\), and the day offset is +1. So 9:30 PM EST equals 2:30 AM UTC the next day.
FAQ
Is EST the same as EDT? No. EST is UTC-5 (winter); EDT is UTC-4 (summer daylight saving). This tool uses EST.
Why does the day sometimes change? Because UTC is ahead of EST, evening EST times can fall on the next calendar day in UTC.
How do I go from UTC back to EST? Subtract 5 hours: \(\text{EST} = \text{UTC} - 5\).