Feet to Inches Converter
Convert feet to inches instantly. Essential for carpentry, construction, and everyday measurements.
Formula: ft × 12 = inches
Common Conversions
How to convert feet to inches
Converting feet to inches is a single multiplication. The formula is ft × 12 = inches, which means one foot equals 12 in. Going the other way, one inch equals 0.0833333 ft.
The calculator above applies this automatically as you type, but it is worth knowing the arithmetic if you need to sanity-check a figure or work one out without a device to hand.
Worked examples
7 ft to in: multiply 7 by 12, which gives 84 in.
45 ft to in: multiply 45 by 12, which gives 540 in.
250 ft to in: multiply 250 by 12, which gives 3,000 in.
Feet to Inches conversion table
The values below are calculated with the same function as the converter above, so they agree to the digit. Use it as a quick reference when you need a rough figure without typing anything.
| Feet | Inches |
|---|---|
| 1 ft | 12 in |
| 2 ft | 24 in |
| 3 ft | 36 in |
| 4 ft | 48 in |
| 5 ft | 60 in |
| 6 ft | 72 in |
| 7 ft | 84 in |
| 8 ft | 96 in |
| 9 ft | 108 in |
| 10 ft | 120 in |
| 15 ft | 180 in |
| 20 ft | 240 in |
| 25 ft | 300 in |
| 30 ft | 360 in |
| 40 ft | 480 in |
| 50 ft | 600 in |
| 75 ft | 900 in |
| 100 ft | 1,200 in |
| Inches | Feet |
|---|---|
| 1 in | 0.0833333 ft |
| 5 in | 0.416667 ft |
| 10 in | 0.833333 ft |
| 25 in | 2.0833333 ft |
| 50 in | 4.1666667 ft |
| 100 in | 8.3333333 ft |
| 250 in | 20.833333 ft |
| 500 in | 41.666667 ft |
| 1000 in | 83.333333 ft |
What is a foot?
A foot is twelve inches, or exactly 0.3048 meters. It sits between the inch and the yard in the imperial and US customary systems.
Where the foot came from
The foot is one of the oldest units in continuous use, derived from the length of a human foot and appearing in Greek, Roman, and medieval European measurement. Its exact length varied widely by region until the 1959 agreement standardised it.
Where feet are used today
In the US, feet are the default for room dimensions, building heights, and property. They persist internationally in aviation, where altitude is given in feet almost everywhere, and in describing a person's height in the US and UK.
- A standard ruler is 1 foot
- A kitchen counter is about 3 feet high
- A basketball hoop is 10 feet up
What is a inch?
An inch is defined as exactly 2.54 centimeters. That exact figure is not an approximation but a definition, agreed internationally in 1959, which is why inch conversions can be stated precisely rather than rounded.
Where the inch came from
The inch descends from the Roman uncia, a twelfth part, which is also the root of the word ounce. For centuries it was defined by body parts and barleycorns, with values differing between countries, until the 1959 international yard and pound agreement fixed one common value.
Where inches are used today
Inches remain standard in the United States for construction, carpentry, and body measurements. Globally they survive in specific niches regardless of local system: screen sizes, wheel and tire diameters, plumbing pipe, and print media are quoted in inches almost everywhere.
- A US quarter is about 1 inch across
- A standard paperclip is roughly 1.4 inches
- A sheet of US Letter paper is 8.5 inches wide
When you actually need this conversion
Both units belong to the imperial / us customary family, so this conversion usually comes up when a figure needs restating at a more convenient scale rather than when crossing between systems.
Buying furniture and appliances from abroad
Product listings quote dimensions in whatever system the manufacturer uses. A sofa listed in centimeters has to be checked against a doorway measured in inches before it arrives, and getting that wrong is an expensive mistake to discover on delivery day.
Height on forms and profiles
Visas, medical forms, sports registrations, and dating profiles all ask for height, and they rarely let you choose the system. Anyone who grew up with one system and now lives with the other converts their own height regularly.
DIY, construction, and materials
Lumber, pipe, and fixings are frequently sold in one system while plans are drawn in another. Mixed-unit projects are common in renovation work, where an older building was built to imperial dimensions and new components are metric.
Travel and maps
Trail markers, road signs, and route planners switch units at borders. Knowing that a 10 km hike is a little over 6 miles turns an abstract number into a realistic sense of how long the day will take.
Accuracy, precision, and rounding
The factor used here (ft × 12 = inches) is derived from an internationally agreed exact definition, so the conversion itself is not an approximation. The results above are shown to about eight significant figures, which is more precision than almost any practical use requires.
The sensible rule is to round the answer to roughly the same precision as the number you started with. If you measured to the nearest foot, an answer carrying six decimal places is not more accurate, it just looks more accurate. For most everyday purposes one or two decimal places is plenty.
Common mistakes to avoid
Converting in the wrong direction
Multiplying when you should divide is by far the most common error, and it is easy to miss because the result is still a number in a believable range. A quick check: since one foot is 12 in, a foot value should get larger when converted.
Using a rounded factor for a long calculation
Rounding the conversion factor before multiplying, then repeating that across many values, compounds the error. Convert with the full factor and round only the final answer.
Converting feet to inches in a spreadsheet or in code
A one-off answer is what the calculator above is for. When you have a whole column of figures, or you are writing something that has to do the conversion repeatedly, it is worth putting the formula in the tool you are already working in.
Excel and Google Sheets
With your foot value in cell A1, put this in B1 and fill it down the column:
=A1 * 12
Excel also ships a built-in CONVERT function that handles many unit pairs directly, but it does not cover every unit and its unit codes are easy to mistype. An explicit formula like the one above is harder to get wrong and shows its working.
Python
def ft_to_in(value):
return value * 12
print(ft_to_in(10))JavaScript
const ftToIn = (value) => value * 12; console.log(ftToIn(10));
Store the factor as a named constant rather than typing 12 at each call site. When a figure appears in three places it will eventually be updated in two of them.
The two measurement systems behind this conversion
Both feet and inches sit within the imperial / us customary system, so this is a conversion of scale rather than of system. That makes it a straightforward relationship, with none of the historical baggage that comes from reconciling two systems built on different foundations.
Because the units share a system, converting between them rarely introduces the kind of error that catches people out when crossing systems. The main risk is simply moving the decimal point the wrong way.
More questions about feet and inches
Is the conversion exact or approximate?
The underlying definition is exact, and the factor shown here (12) is that definition expressed to the precision this page displays. For any everyday purpose the result is exact; only at very high precision would you need more digits of the factor.
Why does the answer have so many decimal places?
The converter shows a high-precision result so that it is never the limiting factor in your calculation. It is up to you to round to something sensible. A measurement taken with a tape measure does not become more accurate because the conversion carried six decimals.
Can I convert in the opposite direction on this page?
Yes. The swap button in the calculator reverses the conversion and carries the current result across as the new input, so you do not have to navigate anywhere or retype anything. The second table above also lists the reverse conversion directly.
Does anything get sent to a server?
No. The arithmetic runs in your browser with a few lines of JavaScript. Nothing you type is uploaded, logged, or stored, which also means the converter keeps working if your connection drops after the page has loaded.
Which figure should I use on an official form?
Use whatever precision the form asks for, and if it does not say, match the precision of the original measurement. For height, weight, and similar personal details, one decimal place is almost always sufficient and often more than is wanted.
Related length conversions
If you need to go the other way as a starting point rather than as a swap, the Inches to Feet converter is the mirror of this page: same factor, same tables, opposite direction. It is the more natural place to start when most of your figures are already in inches.
Length conversions rarely arrive alone. A set of dimensions usually mixes scales, so these cover the neighbouring pairs you are likely to need in the same sitting:
- CM to Inches - Convert centimeters to inches instantly. Enter any value and get the exact result in decimal inches.
- MM to Inches - Convert millimeters to inches quickly and accurately. Ideal for engineering, woodworking, and crafts.
- Meters to Feet - Convert meters to feet instantly. Useful for height, room dimensions, and construction measurements.
- KM to Miles - Convert kilometers to miles instantly. Great for travel distances, running routes, and road trips.
- CM to Feet - Convert centimeters to feet in one click. Perfect for converting height measurements.
- Meters to Yards - Convert meters to yards instantly. Commonly used in sports fields, fabric, and landscaping.
For anything not listed here, the full converter directory covers over a hundred pairs across length, weight, temperature, volume, area, speed, pressure, energy, and more.
Quick reference
| 1 ft equals | 12 in |
| 1 in equals | 0.0833333 ft |
| Formula | ft × 12 = inches |
| Feet system | Imperial / US customary |
| Inches system | Imperial / US customary |
| Measures | Length |
Why Use Our Feet to Inches Converter?
Instant Results
Type any feet value and see the inches result immediately as you type.
Highly Accurate
Uses the exact conversion factor. ft × 12 = inches
Swap Direction
Easily convert Inches back to Feet with the swap button. No need to visit a different page.
One-Click Copy
Copy the converted result to your clipboard instantly with the Copy button.
Common Values Table
See a quick reference table of 9 common feet values and their inches equivalents.
100% Private
All conversions happen in your browser. Nothing is sent to a server or stored anywhere.
Frequently Asked Questions
How many inches in a feet?
1 ft = 12 in. Use the formula: ft × 12 = inches.
How to convert feet to inches?
To convert feet to inches, use the formula: ft × 12 = inches. For example, 5 ft = 60 in.
Is this feet to inches converter accurate?
Yes. The converter uses the internationally accepted exact conversion factor. The result is accurate to at least 6 significant figures.
Can I convert inches back to feet?
Yes. Click the "Swap direction" button to reverse the conversion. The current result becomes the new input automatically.
Does this work on mobile?
Yes. The converter works on all devices, phones, tablets, and desktops. All calculations happen in your browser.
Is my data stored anywhere?
No. All conversions run entirely in your browser. Nothing is uploaded, logged, or stored.
All Tools
Every tool, in one place.
290+ free tools. All run in your browser, no sign-up, no uploads, nothing stored.
Text Tools (24)
View allPDF Tools (16)
View allImage Tools (20)
View allUnit Converters (110)
View allCalculators (34)
View allMedia Tools (30)
View allGames and Puzzles (17)
View allDeveloper Tools (8)
Fun and Random (19)
View allDesign and Color (4)
Time Tools (6)
