Connect via MCP →

Enter Calculation

Formula

Advertisement

Results

UTC Time
18:00
same day
CST Input 12:00
UTC Output 18:00
Offset CST = UTC − 6 hours
Day change none

What is the CST to UTC Converter?

This tool converts a time given in Central Standard Time (CST) to Coordinated Universal Time (UTC). CST is the standard time used in the central United States, Mexico, and parts of Canada during the non-daylight-saving months, and it sits at a fixed offset of UTC−6. To go from CST to UTC you simply add 6 hours. Note: when Daylight Saving Time is active the central zone uses CDT (UTC−5) instead — this converter assumes standard time (CST).

How to use it

Enter the CST hour using the 24-hour clock (0 to 23) and the minutes (0 to 59). The calculator adds 6 hours, wraps the result around midnight using modulo 24, and tells you whether the conversion pushes the time into the next UTC day.

The formula explained

Because CST = UTC − 6, the reverse is UTC = CST + 6. Minutes are unchanged because the offset is a whole number of hours. The expression \((\text{CST Hour} + 6) \bmod 24\) keeps the result within a single 24-hour clock. If \(\text{CST Hour} + 6\) is 24 or more, the UTC date is one calendar day ahead.

$$\text{UTC Hour} = \left(\text{CST Hour} + 6\right) \bmod 24, \qquad \text{UTC Minute} = \text{Minute}$$

The full set of relationships is:

$$\begin{gathered} \text{UTC Hour} = \left(\text{CST Hour} + 6\right) \bmod 24 \\[1em] \text{UTC Minute} = \text{Minute} \\[1em] \text{Day Offset} = \begin{cases} +1 & \text{CST Hour} + 6 \ge 24 \\ 0 & \text{otherwise} \end{cases} \end{gathered}$$
Number line showing CST shifted plus 6 hours to UTC
UTC is found by adding 6 hours to the CST time (wrapping past 24).

Worked example

Suppose it is 20:30 CST. Add 6 hours: \(20 + 6 = 26\). Since \(26 \ge 24\), subtract 24 to get hour 2, and flag a +1 day rollover. The minutes stay at 30. Result: 02:30 UTC, next day.

$$\text{UTC Hour} = (20 + 6) \bmod 24 = 26 \bmod 24 = 2$$
Clock at 9 CST mapped to 15 UTC with a plus six arrow
Example: 09:00 CST plus 6 hours equals 15:00 UTC.

FAQ

Is CST the same as CDT? No. CST is UTC−6 (winter); CDT is UTC−5 (summer daylight saving). This converter uses CST.

Do minutes change? No — the offset is exactly 6 hours, so minutes carry over unchanged.

Why does the date sometimes change? Adding 6 hours can cross midnight UTC, so evening CST times often land on the next UTC calendar day.

Last updated: