What this converter does and why 2.54 is an exact number
You convert a stature between two systems that describe the same physical length in different words. A height is one number, and feet-and-inches and centimeters are two ways of writing it down. The converter turns your entry into a single count of inches, scales it by 2.54, and reports the result in centimeters and meters; running the other way it divides by 2.54, takes the whole number of feet, and leaves the remainder in inches.
The factor 2.54 deserves attention because it is not a measurement. Before 1959 the United States, the United Kingdom, Canada, Australia, New Zealand and South Africa each maintained slightly different yards, so an inch measured in London and an inch measured in Washington disagreed in the sixth decimal place. In 1959 those countries adopted a common international yard of exactly 0.9144 meters, which makes the inch exactly 25.4 millimeters and therefore exactly 2.54 centimeters. That agreement is why the numbers in this converter terminate: any whole number of inches multiplied by 2.54 gives a centimeter value with at most two decimal places and no repeating tail.
The practical consequence is that no accuracy is lost in the conversion itself. If your answer is off, the height you started from was rounded, measured against a wall with your shoes on, or recorded to the nearest inch when the form wanted the nearest centimeter.
The formula, and why the reverse direction needs a floor
Forward, the arithmetic is two operations. Multiply the feet by twelve and add the inches, which collapses a mixed unit into one number. Multiply by 2.54. That is the whole calculation, and you can do it in your head for round cases: six feet is 72 inches, and 72 × 2.54 = 182.88 cm.
Backward it is slightly less symmetric, because feet-and-inches is a mixed radix notation and centimeters is not. Divide the centimeters by 2.54 to get total inches. Then take the floor of that number divided by twelve, not the rounded value, because 71.9 inches is five feet eleven and nine tenths, not six feet. Subtract twelve times the whole feet from the total inches and what is left is the inch part. Using rounding instead of flooring at this step is the single most common bug in home-made converters, and it produces heights such as “6 ft 11.9 in”.
One boundary case needs care in either direction. If the inch remainder is 11.999 and you display it to two decimals, it prints as 12.00, which is not a legal inch value. The converter watches for that and rolls the height up to the next whole foot with zero inches, so you never see an impossible reading. The same guard is why an entry of exactly 182.88 cm returns 6 ft 0 in rather than 5 ft 12 in.
Worked example: 5 ft 9 in in metric, and 180 cm back again
Start with a height of 5 ft 9 in, the entry the calculator loads with.
- Collapse to inches. 5 × 12 = 60, and 60 + 9 = 69 inches.
- Scale to centimeters. 69 × 2.54. Split the multiplication if you are doing it on paper: 69 × 2 = 138, 69 × 0.5 = 34.5, 69 × 0.04 = 2.76. Add them: 138 + 34.5 + 2.76 = 175.26 cm.
- Express in meters. Divide by 100: 1.7526 m.
Now run a metric height the other way. A record says 180 cm.
- Divide by 2.54. 180 ÷ 2.54 = 70.866141732 inches. Check it: 70 × 2.54 = 177.8, leaving 2.2 cm, and 2.2 ÷ 2.54 = 0.866, so 70.866 inches is right.
- Take whole feet. 70.866 ÷ 12 = 5.9055, and the floor of that is 5 feet.
- Take the remainder. 70.866141732 − (12 × 5) = 10.866 inches, which most people would write as 5 ft 10¾ in and a form would take as 5 ft 11 in.
Notice the asymmetry the two halves of this example expose. Going into metric from a whole number of inches gives an exact terminating answer. Coming back from a whole number of centimeters almost never lands on a whole inch, so the reverse direction always ends in a judgement about how to round. That judgement, not the arithmetic, is where the disagreements come from.
How to read the result, and how much to round
Round to whole centimeters for anything official. Passport applications, visa forms, national ID records and hospital admission systems store height as an integer number of centimeters, and reporting 175.26 into a field that expects 175 wastes everyone's time. Round to the nearest whole centimeter and stop.
Keep one decimal place only when you are tracking change over time. Growth monitoring in children and stature loss in older adults both work with differences of a centimeter or less, and rounding each reading to a whole centimeter before subtracting can double the apparent noise in the series. A stadiometer reads to 0.1 cm, so that is the precision worth carrying.
Going the other way, decide in advance whether you are rounding to the nearest inch or to the nearest half inch, and use the same rule for every reading in a set. Clothing size charts almost universally work in whole inches; a bike fit or a made-to-measure suit works in half or quarter inches. The inch remainder this converter reports is the exact value, so you make the rounding decision rather than having it made for you.
Finally, treat any height quoted without a measurement protocol as approximate to about a centimeter. Stature falls measurably through the day as the spinal discs compress, and shoes, hair and posture all add more than the conversion arithmetic ever will.
Height conversion chart, 5 ft 0 in to 6 ft 4 in
| Feet and inches | Total inches | Centimeters | Meters |
|---|---|---|---|
| 5 ft 0 in | 60 | 152.40 | 1.524 |
| 5 ft 1 in | 61 | 154.94 | 1.549 |
| 5 ft 2 in | 62 | 157.48 | 1.575 |
| 5 ft 3 in | 63 | 160.02 | 1.600 |
| 5 ft 4 in | 64 | 162.56 | 1.626 |
| 5 ft 5 in | 65 | 165.10 | 1.651 |
| 5 ft 6 in | 66 | 167.64 | 1.676 |
| 5 ft 7 in | 67 | 170.18 | 1.702 |
| 5 ft 8 in | 68 | 172.72 | 1.727 |
| 5 ft 9 in | 69 | 175.26 | 1.753 |
| 5 ft 10 in | 70 | 177.80 | 1.778 |
| 5 ft 11 in | 71 | 180.34 | 1.803 |
| 6 ft 0 in | 72 | 182.88 | 1.829 |
| 6 ft 1 in | 73 | 185.42 | 1.854 |
| 6 ft 2 in | 74 | 187.96 | 1.880 |
| 6 ft 3 in | 75 | 190.50 | 1.905 |
| 6 ft 4 in | 76 | 193.04 | 1.930 |
Meters are rounded to three decimals for display; the exact value is the centimeter figure divided by 100.
Mistakes that produce a wrong height
- Treating the inch part as a decimal fraction of a foot. 5 ft 9 in is not 5.9 ft. It is 5.75 ft, because nine inches is three quarters of a foot. Entering 5.9 into a feet-only field overstates the height by 1.8 inches.
- Rounding instead of flooring when splitting inches into feet. This is what produces readings such as 5 ft 12 in. Take the whole number below, then subtract.
- Using 2.5 instead of 2.54. The shortcut looks harmless and costs 1.6 percent, which on a 175 cm height is 2.8 cm — enough to change a clothing size.
- Mixing up centimeters and millimeters on a foreign document. A height of 1750 is millimeters; 175 is centimeters. Set the unit selector to match the label on the paper rather than assuming.
- Comparing heights measured differently. A self-reported height, a height taken with shoes on, and a stadiometer reading first thing in the morning can differ by three centimeters between them. No converter reconciles that.
- Confusing standing height with recumbent length for infants. Length measured lying down runs slightly longer than standing height, and pediatric growth charts use different references for the two.
Key terms
- International inch
- The inch as defined by the 1959 international yard and pound agreement: exactly 25.4 mm. Every English-speaking country that used the imperial inch adopted it, which is why one conversion factor now serves them all.
- Stature
- Standing height measured from the floor to the highest point of the head, with the subject barefoot and the head in the Frankfort horizontal plane. This is what clinical records mean by height.
- Stadiometer
- The wall-mounted measuring device with a sliding headpiece used in clinics. It reads to 0.1 cm, which is the practical limit of a repeatable height measurement.
Where this sits among the other length conversions
This converter is a special case of the general inch-millimeter relationship, restricted to the range and formatting conventions of human height. If you are converting a drawing dimension, a part size or anything that is quoted to thousandths, use the millimeters to inches calculator instead, which reports the nearest usable fraction and the residual error rather than a foot-and-inch split. For a shop measurement that has to land on a tape mark, the decimal inches to fraction calculator is the right tool.
For distances rather than heights, work in the base units directly: the meters to feet calculator handles ceiling heights, room dimensions and elevations, and offers the retired US survey foot for older land records where the difference matters. Longer distances belong in the miles to kilometers calculator.
Height rarely travels alone on a form. The same intake sheet that asks for centimeters usually asks for kilograms, so the kilograms to pounds calculator is the natural companion, and it reports stones as well for readers filling in United Kingdom paperwork. Between the two you can complete the biometric section of almost any international form without converting anything by hand.
One historical note worth carrying: the United States never adopted the metric system for everyday height, but it did define its customary units in terms of metric ones. The foot is legally 0.3048 meters, not the other way round. Every imperial length on this site is therefore derived from an SI definition, which is why the factors are exact.
