What is the UTC to BST Converter?
This tool applies to the United Kingdom. British Summer Time (BST) is the time observed in the UK during daylight saving, which runs from the last Sunday in March to the last Sunday in October. During this period clocks are set one hour ahead of Coordinated Universal Time (UTC), so BST = UTC + 1 hour. Outside this window the UK follows GMT (equal to UTC), so this converter is intended for dates that fall within the summer-time period.
How to use it
Enter the UTC hour (0–23) and minute (0–59). The calculator adds one hour, wraps the result onto a 24-hour clock, and tells you whether the time falls on the next day. The headline shows the BST time in HH:MM format.
The formula explained
We convert the UTC time to minutes since midnight, add 60 minutes, then take the result modulo 1440 (the number of minutes in a day). If adding the hour pushes the total to 1440 or beyond, a +1 day offset is reported.
$$\text{BST} = \left(\left(\text{UTC Hour} \times 60 + \text{UTC Minute} + 60\right) \bmod 1440\right)$$$$\begin{gathered} \text{BST}_{\min} = \left(\,T + 60\,\right) \bmod 1440 \\[1.5em] \text{where}\quad \left\{ \begin{aligned} T &= \text{UTC Hour} \times 60 + \text{UTC Minute} \\ \text{BST Hour} &= \left\lfloor \tfrac{\text{BST}_{\min}}{60} \right\rfloor \\ \text{BST Minute} &= \text{BST}_{\min} \bmod 60 \end{aligned} \right. \end{gathered}$$
Worked example
Suppose it is 23:30 UTC. In minutes that is \(23 \times 60 + 30 = 1410\). Add 60 → 1470. Since \(1470 \geq 1440\), the day offset is +1. Taking \(1470 \bmod 1440 = 30\) minutes, which is 00:30. So 23:30 UTC = 00:30 BST the next day.
FAQ
Is BST the same as GMT? No. GMT equals UTC, while BST is UTC + 1 hour during the summer-time period.
When is BST in effect? From the last Sunday in March until the last Sunday in October each year.
What does "next day" mean? If adding an hour pushes the time past midnight, the BST time falls on the following calendar day.