Skip Navigation

Minutes to HH:MM:SS Time Calculator

Convert a total number of minutes (including decimal minutes) to HH:MM:SS format. Useful for converting meeting durations, run times, or other elapsed time values.

01:30:00

Formula

HH = floor(min ÷ 60) MM = floor(min mod 60) SS = round((min − floor(min)) × 60)

How to Convert Minutes to HH:MM:SS

To convert total minutes to HH:MM:SS:

1. Hours (HH) = floor(minutes ÷ 60)

2. Minutes (MM) = floor(minutes mod 60)

3. Seconds (SS) = round((decimal fraction of minutes) × 60)

Example: 90 minutes = 01:30:00

Example: 125.5 minutes = 02:05:30

Minutes to HH:MM:SS Reference Table

MinutesHH:MM:SS
1500:15:00
3000:30:00
4500:45:00
6001:00:00
9001:30:00
12002:00:00
15002:30:00
18003:00:00
24004:00:00
48008:00:00
60010:00:00
72012:00:00
144024:00:00


See also