What is the UTC to SGT Converter?
This tool converts a time given in Coordinated Universal Time (UTC) to Singapore Standard Time (SGT). Singapore observes UTC+8 throughout the entire year and does not use daylight saving time, so the offset is always a constant +8 hours. This applies specifically to Singapore (and the same offset is shared by places like Western Australia, Hong Kong, and Beijing).
How to use it
Enter the UTC hour (0–23) and the UTC minute (0–59). The calculator adds 8 hours and shows the equivalent Singapore time in 24-hour format. If adding 8 hours rolls past midnight, the result also flags that the SGT date falls on the next calendar day (+1).
The formula explained
The conversion is simply SGT = UTC + 8 hours. Internally the time is converted to total minutes, 480 minutes (8 hours) are added, and the result wraps around using modulo 1440 (the number of minutes in a day). A day offset is reported when the original UTC hour plus 8 reaches or exceeds 24.
$$\text{SGT} = \left(\text{UTC Hour} \times 60 + \text{UTC Minute} + 480\right) \bmod 1440$$
$$\begin{gathered} T = \left(\text{UTC Hour} \times 60 + \text{UTC Minute} + 8 \times 60\right) \bmod 1440 \\[1.5em] \text{where}\quad \left\{ \begin{aligned} \text{SGT Hour} &= \left\lfloor \tfrac{T}{60} \right\rfloor \\ \text{SGT Minute} &= T \bmod 60 \end{aligned} \right. \end{gathered}$$
Worked example
Suppose the UTC time is 18:30. Add 8 hours: \(18 + 8 = 26\), which wraps to \(26 - 24 = 2\). The minutes stay at 30. So 18:30 UTC equals 02:30 SGT the next day.
FAQ
Does Singapore use daylight saving time? No. SGT stays at UTC+8 all year, so this conversion never changes by season.
What about the date? Because SGT is ahead of UTC, late-evening UTC times can land on the following day in Singapore. The calculator shows this with a +1 day flag.
Is SGT the same as GMT+8? Yes. SGT, UTC+8 and GMT+8 all refer to the same clock time for Singapore.