Time to Decimal Converter

Convert time in hours and minutes to decimal hours and vice versa

About This Tool

Decimal time expresses hours and minutes as a single decimal number, where minutes are divided by 60. 1:30 becomes 1.5; 2:45 becomes 2.75; 0:20 becomes 0.333. Payroll, billing, and time-tracking systems consume decimal time because it lets durations sum and multiply trivially.

The converter goes both directions to four-decimal precision, with rounding to nearest minute when going backward.

Decimal time conversion is straightforward arithmetic: hours.decimal = hours + minutes/60. The reverse: hours = floor(decimal), minutes = round((decimal − floor) × 60). Common rounding conventions in payroll: nearest hundredth (0.01 = 36 seconds), nearest tenth (0.1 = 6 minutes), nearest quarter (0.25 = 15 minutes). Quarter-hour rounding is the most generous to employees but creates strange artifacts when summed — 16 employees clocking 7:38 each round to 7.50 hours apiece, giving a payroll number 16 × 0.13 = 2.08 hours larger than the actual work performed. The math itself is rigorous; the rounding rule is policy.

A worked example: a freelancer logs 6:45, 4:20, 3:55, and 2:10 across four days. Decimal: 6.75 + 4.333 + 3.917 + 2.167 = 17.167 hours. At $100/hour, that's $1,716.67 invoiced. The same hours logged in HH:MM format and summed are 17:10, which has to be converted before multiplication — multiplying 17:10 by 100 directly gives the wrong answer because the colon-separated form isn't a number. This is why timesheet software almost always stores decimal internally and renders HH:MM only for display. The reverse conversion: 17.167 hours back to HH:MM = 17 hours plus 0.167 × 60 = 10.02 minutes ≈ 17:10. Slight rounding losses round-trip due to the divide-and-multiply.

Limitations: the conversion handles standard 24-hour time. Some experimental systems (decimal day, French Revolutionary time) divide the day into 10 "decimal hours" of 100 "decimal minutes" each — fundamentally different from what this tool does. Hours over 24 work fine arithmetically (100:30 = 100.5) but exceed what wall-clock representations support. Negative durations (debt time, time saved) work the same way. Date arithmetic — adding a duration to a specific date — needs full date support and isn't what this tool does. For payroll integration, verify whether your system rounds at the line item or after summation; the difference can be tens of dollars per pay period.

The about text and FAQ on this page were drafted with AI assistance and reviewed by a member of the Coherence Daddy team before publishing. See our Content Policy for editorial standards.

Frequently Asked Questions