Decimal Hours to HH:MM:SS Time Calculator
Convert decimal hours to HH:MM:SS format. Useful for converting payroll decimals, spreadsheet time values, or GPS coordinates to standard time notation.
02:30:00
Formula
HH = floor(d) MM = floor((d − HH) × 60) SS = round(((d − HH) × 60 − MM) × 60)
How to Convert Decimal Hours to HH:MM:SS
A decimal hour like 2.75 means 2 hours and 75% of an hour. To convert:
1. Hours (HH) = the whole number part: floor(2.75) = 2
2. Minutes (MM) = the fractional part × 60: (0.75 × 60) = 45
3. Seconds (SS) = any remaining fraction × 60
Example: 2.75 decimal hours = 02:45:00
Decimal Hours to HH:MM:SS Reference Table
| Decimal Hours | HH:MM:SS |
|---|---|
| 0.25 | 00:15:00 |
| 0.5 | 00:30:00 |
| 0.75 | 00:45:00 |
| 1 | 01:00:00 |
| 1.5 | 01:30:00 |
| 2 | 02:00:00 |
| 3 | 03:00:00 |
| 4 | 04:00:00 |
| 6 | 06:00:00 |
| 8 | 08:00:00 |
| 12 | 12:00:00 |
| 24 | 24:00:00 |