Height Converter — cm to Feet and Inches

Convert height between centimeters and feet & inches (e.g. 178 cm = 5' 10"), plus meters and total inches.

🦒

Height Converter

Body • cm ↔ ft/in

0 chars
0 chars

How to Use the Height Converter

  1. Pick a direction — use the toggle at the top (e.g. encode vs decode).
  2. Type or paste your text — the result updates live as you type; large inputs are fine.
  3. Copy the result — one click copies the output to your clipboard.
  4. Swap — flip the direction (⇄) to reverse the conversion instantly.

Why Use This Height Converter

🎯

Reversible in one click

Encoding and decoding share the page, so any result can be pasted straight back to confirm it round-trips to the text you started with — the quickest check that nothing was mangled.

Live as you type

Results are recalculated on every keystroke, with no submit step and no page reload, so a value can be adjusted until the answer looks right rather than guessed once.

🔒

100% private

Everything runs in your browser — no account, no uploads, nothing leaves your device.

Understanding the Height Converter

The US measures height in feet and inches while most of the world uses centimeters, so converting between them is one of the most common everyday lookups — for IDs, sports, dating profiles, medical forms and online shopping. 178 cm is 5 ft 10 in.

This converter switches between centimeters and feet-and-inches (and also shows meters and total inches), so you can enter either and instantly read the other. You can type heights like 5' 10".

Formula & Logic

Height conversion is arithmetically trivial and practically error-prone, because the imperial form is a mixed-radix number: feet and inches, with twelve inches to the foot. Treating 5 ft 10 in as "5.10" and multiplying is the classic mistake, and it produces an answer about 20 cm wrong. The reliable method is to reduce everything to a single unit — total inches — before converting, then to reverse the process with integer division and a remainder when going back. The inch is exactly 2.54 cm, so no precision is lost in either direction.

total inches = (feet × 12) + inchescm = total inches × 2.54Reverse: feet = ⌊total ÷ 12⌋, inches = total mod 12

where:

total inches
the single-unit intermediate that avoids mixed-radix errors
2.54
exact centimetres per inch since 1959
12
inches per foot

Assumptions: Standing height varies by up to 2 cm through the day — spinal discs compress under load — so morning and evening measurements legitimately differ. Clinical measurements are taken without shoes against a stadiometer.

Step-by-Step Example: 5 ft 10 in to Centimetres, and Back

Convert a common height in both directions, avoiding the decimal trap.

  • Height5 feet 10 inches
  1. Reduce to inches: (5 × 12) + 10 = 70 inches.
  2. Convert: 70 × 2.54 = 177.8 cm.
  3. Now reverse it: 177.8 ÷ 2.54 = 70 inches.
  4. Integer divide: 70 ÷ 12 = 5 remainder 10, giving 5 ft 10 in.
  5. See the trap: treating the height as "5.10 feet" gives 5.10 × 30.48 = 155.4 cm — 22 cm too short.
  6. For reference, 6 ft is 182.88 cm and 5 ft is 152.4 cm.

Result5 ft 10 in = 177.8 cm

The mixed-radix trap appears whenever feet-and-inches are stored as a decimal. Spreadsheets are especially prone to it, because "5.10" is a perfectly valid number and nothing flags the error — the result is simply wrong by up to 11 inches.

Height Converter FAQ

Divide cm by 2.54 to get total inches, then split into feet (÷12) and remaining inches. 178 cm ÷ 2.54 = 70.1 in = 5 ft 10.1 in.
Yes — switch the direction and type like 5' 10" or "5 10" to get centimeters.

Related Converters

✔ Written & reviewed by Dr Sam — 20+ yrs in management & research leadership📅 Last updated September 2026📚 Sources: NIST & BIPM SI unit definitions📑 How we build & check these

Where Height Conversions Quietly Lose Precision

Feet and inches are a coarser scale than centimetres, and the rounding runs in both directions. Five foot ten is exactly 177.8 cm, so a person recorded as 178 cm is not quite the same height as one recorded as 5 ft 10 in — the gap is small, but it is why converting a figure back and forth repeatedly can drift by a centimetre. Where a value is going into a record that will be converted again later, keeping the original unit alongside it avoids the accumulation entirely.

The measurement itself is less stable than either unit suggests. Spinal discs compress through the day, so most adults measure a centimetre or two shorter in the evening than on waking, and standing posture against a wall can account for as much again. Any single height figure therefore carries a real uncertainty comparable to the rounding, which is worth remembering before treating a one-centimetre difference between two records as a discrepancy.

Conventions differ across the documents that ask for the number. Medical and official measurements are taken without shoes and with the head in a defined position; sports and identification records are frequently not. A converted height is only as consistent as the procedure that produced it, so the useful habit is to note how a figure was measured rather than assume that two heights in the same units were arrived at the same way.