Article — Hour Converter
Hour converter: hours to minutes, seconds, days, and weeks
An hour converter translates one quantity of time, expressed in hours, into other common units: minutes (multiply by 60), seconds (multiply by 3,600), milliseconds (multiply by 3,600,000), days (divide by 24), and weeks (divide by 168). All factors are exact integers, not measured values.
This converter handles both decimal hours (8.75) and the HH:MM:SS clock notation (08:45:00). It is built for payroll work, project planning, programming, and any case where a single hour value needs to be expressed several ways at once.
What is an hour converter?
An hour converter is a one-input, multi-output tool. You type a number of hours and it returns every standard time unit instantly. The output stack includes the SI second, the everyday minute, and large-scale units like days and weeks. Unlike currency or temperature, hour conversion uses fixed integer relationships, so the answers are always exact within numerical precision.
The second is the SI base unit of time, defined since 1967 by an atomic transition in caesium-133. Every larger unit of time — minute, hour, day, week — is a fixed multiple of that second, built up by humans through arithmetic. Hours are not measured; they are counted.
The defining caesium transition runs at 9,192,631,770 cycles per second. Multiply by 3,600 and a single hour contains 33,093,474,372,000 caesium oscillations — exactly. That makes the hour the only common time unit with no measurement uncertainty.
Hour converter formulas
Six core formulas drive the converter. Going up the ladder (toward bigger units) means dividing; going down means multiplying. The same hour value can be expressed as:
- Minutes = hours × 60
- Seconds = hours × 3,600
- Milliseconds = hours × 3,600,000
- Days = hours ÷ 24
- Weeks = hours ÷ 168
- Decimal hours = h + m/60 + s/3600
For round-trip checks, the converter normalises every input back to seconds before producing the other units. This avoids accumulating floating-point error when chains of decimal arithmetic would otherwise drift.
Decimal hours vs HH:MM:SS
Decimal hours represent time as a single fractional number (8.75). HH:MM:SS represents the same time as three integers (08:45:00). They convey identical information but suit different workflows. Payroll software prefers decimal hours because it can multiply directly by an hourly rate. Schedules and ISO 8601 timestamps prefer HH:MM:SS because the parts map cleanly to clock faces.
Converting between them is a base-60 calculation. To go from decimal to HH:MM:SS, take the floor for the hour, multiply the remainder by 60 for the minute, multiply the remainder of that by 60 for the second. To go from HH:MM:SS to decimal, divide minutes by 60 and seconds by 3,600, then add to the hour. The hour converter handles both directions.
If your payroll system rejects 8.5 hours but accepts 8:30:00, use the HH:MM:SS output. If it rejects 8:30:00 but accepts 8.5, use decimal hours. The converter shows both formats for any input.
Hour converter for payroll and timesheets
US payroll systems run on decimal hours. A worker clocks in at 8:00 and out at 16:45 — that is 8.75 decimal hours, multiplied by, say, $25 per hour, equals $218.75 gross. Without the converter, payroll staff would either need a lookup table for every minute or risk rounding errors that compound across a workforce.
The decimal-to-minute lookup is non-obvious. 0.10 hours is 6 minutes, not 10. 0.25 hours is exactly 15 minutes. 0.33 hours is 19.8 minutes, not 20 (a true 20 minutes is 0.333… repeating). The reference table on this page covers the common conversions.
Some timesheet apps store decimals out to 0.01 (e.g., 8.43), which a user reads as 8 hours 43 minutes. That is wrong — 0.43 of an hour is 25.8 minutes. Always convert the decimal back through × 60, or use the HH:MM:SS view.
Hour converter for programmers
JavaScript Date objects store time in milliseconds since 1970-01-01 UTC. To express an interval in hours: divide by 3,600,000. To express in minutes: divide by 60,000. The hour converter mirrors these factors and is helpful for sanity-checking timestamp arithmetic.
The setTimeout and setInterval APIs take milliseconds. One hour is 3600000. A common bug is passing the value in seconds (3600) and wondering why the timer fires after 3.6 seconds. Use the converter's milliseconds output as a reference.
1 hr = 60 min 1 hr = 3,600 s1 hr = 3,600,000 ms 1 hr = 1/24 day1 hr = 1/168 week 1 hr = 1/8,760 year (non-leap)Hour conversion pitfalls to avoid
Three errors come up repeatedly. First, treating the decimal point like a colon — 8.30 hours is not 8:30:00; it is 8:18:00. Second, ignoring the difference between solar day (24 hours by definition) and sidereal day (about 23.93 hours). Solar days are what civil time uses. Third, mixing decimal and HH:MM:SS in a single spreadsheet column without conversion, which produces nonsense averages.
A fourth, subtler issue is leap seconds. UTC inserts a leap second roughly every 18 months to keep clocks aligned with Earth's rotation. The hour converter ignores leap seconds — for nearly every practical purpose this is correct, because civil time absorbs the leap second at the day boundary and the hour stays at 3,600 seconds.
Why hours have 60 minutes
The 60-minute hour and 60-second minute come from the Babylonian sexagesimal (base-60) system, transmitted through Greek astronomy and codified in medieval Europe by clockmakers. Sixty divides cleanly by 2, 3, 4, 5, 6, 10, 12, 15, 20, and 30 — far more than 10, which divides only by 2 and 5. That made it the practical choice for dividing the day and the circle.
The 24-hour day, however, is Egyptian. The Egyptians divided daylight into 12 segments and night into 12 more, giving 24 unequal hours. Greek astronomers regularised them into 24 equal hours. The result is a hybrid: 24 hours per day (Egyptian), each split into 60 minutes (Babylonian), each split into 60 seconds (also Babylonian).
The same base-60 system underlies angle measurement: 360 degrees, each divided into 60 arcminutes and 60 arcseconds. This is not a coincidence — it comes from the Babylonian astronomical tradition that linked time and angle on the celestial sphere.
Quick hour conversion FAQ
The most asked questions about the hour converter, summarised: how many minutes in 1.5 hours (answer: 90); how many seconds in 24 hours (answer: 86,400); how to convert 8 h 45 min to decimal (answer: 8.75); how to convert 0.75 hours to minutes (answer: 45). The FAQ tab on this page has expanded answers.
For project planning, the hour-to-week and hour-to-day conversions matter most. A 200-hour project at 40 hours per week takes exactly 5 weeks. The same project at 8 hours per workday takes 25 working days. The converter does both calculations in one read.