What is the CST to EST Converter?
This tool converts a time in Central Standard Time (CST) to Eastern Standard Time (EST). The continental United States uses several time zones, and the Central and Eastern zones are neighbors. EST sits one hour ahead of CST, so any clock reading in Chicago, Dallas or Houston is one hour behind the same moment in New York, Atlanta or Miami.
How to use it
Enter the hour (0–23) and minutes for the Central Time you want to convert. The calculator adds one hour and shows the equivalent Eastern Time. Times that cross midnight wrap around correctly — for example 23:30 CST becomes 00:30 EST.
The formula explained
CST is UTC−6 and EST is UTC−5. The difference between the two offsets is exactly one hour, so:
$$\text{EST} = \text{CST} + 1 \text{ hour}$$
More precisely, with times expressed in minutes:
$$T = \left( \text{Hour (CST)} \times 60 + \text{Minute} + 60 \right) \bmod 1440$$where
$$\left\{ \begin{aligned} \text{EST Hour} &= \left\lfloor \frac{T}{60} \right\rfloor \\ \text{EST Minute} &= T \bmod 60 \end{aligned} \right.$$This applies to standard time. During spring and summer, both zones observe daylight saving as CDT (UTC−5) and EDT (UTC−4) — the one-hour gap stays the same, only the labels change.
Worked example
Suppose a meeting is scheduled for 9:00 AM CST. In 24-hour form that is 09:00. Adding one hour gives \(09:00 + 1 = 10:00\), so the meeting is at 10:00 AM EST. Likewise, 14:45 CST converts to 15:45 EST (3:45 PM).
FAQ
Is EST ahead of or behind CST? EST is ahead by one hour. When it is 12:00 noon in Central Time, it is 1:00 PM in Eastern Time.
Does daylight saving change the difference? No. Both zones shift together, so the gap remains one hour year-round (CDT to EDT).
Which cities use these zones? CST: Chicago, Houston, Dallas, New Orleans. EST: New York, Washington D.C., Atlanta, Miami.