What is the Minutes to Hours Converter?
This tool converts any number of minutes into three useful formats at once: a friendly hours-and-minutes description (such as "5 hours 45 minutes"), an hh:mm clock-style value (such as "5:45"), and decimal hours (such as 5.75). Because one hour always equals exactly 60 minutes, this conversion is universal and works the same way everywhere in the world.
How to use it
Type the number of minutes into the input box and submit. The minutes value can be a whole number or include a fraction (for example 90.5). The calculator immediately returns the equivalent hours and minutes, the hh:mm format, and the decimal-hour value so you can use whichever form suits your need.
The formula explained
Decimal hours are found simply by dividing minutes by 60: $$H = \dfrac{m}{60}$$ To split minutes into whole hours and leftover minutes, take the integer part of that division for the hours, \(Q = \left\lfloor \dfrac{m}{60} \right\rfloor\), and the remainder for the minutes, \(R = m - 60 \times Q\). In hh:mm format the minute portion is padded to two digits, so 5 hours and 5 minutes displays as "5:05" rather than "5:5".
Worked example
Suppose you have 345 minutes. Decimal hours $$= \dfrac{345}{60} = 5.75 \text{ hours}$$ Whole hours \(Q = \left\lfloor \dfrac{345}{60} \right\rfloor = 5\). Remainder \(R = 345 - 60 \times 5 = 45\) minutes. So 345 minutes equals "5 hours 45 minutes", or "5:45", or 5.75 hours.
FAQ
How many hours is 90 minutes? \(\dfrac{90}{60} = 1.5\) hours, which is 1 hour 30 minutes, or 1:30.
Can I enter a fraction of a minute? Yes. For 90.5 minutes you get 1 hour and 30.5 minutes, and 1.508333 decimal hours.
What does the hh:mm format mean? It is the way time appears on a digital clock: whole hours before the colon and zero-padded minutes after it.