Convert between feet and inches instantly with this free online calculator. Enter a value in either field for automatic conversion.
Convert between feet and inches by entering a value in either field. The conversion will happen automatically.
1 foot = 12 inches
1 inch = 1/12 foot (0.0833 feet)
The Feet to Inches Converter is a practical online tool designed to quickly and accurately convert between feet and inches. This essential measurement converter simplifies the process of converting feet to inches and inches to feet, saving time and preventing calculation errors. With a simple, user-friendly interface, you can instantly see how many inches are in any number of feet, or how many feet are in any number of inches. Whether you're working on a construction project, planning home renovations, or simply need to convert height measurements, this feet-inches measurement converter provides precise results with minimal effort.
In the imperial measurement system, 1 foot equals exactly 12 inches. This fundamental relationship forms the basis of all feet-to-inches conversions. Our converter uses this standard conversion ratio to ensure accurate results every time you need to convert between these common units of length.
The mathematical relationship between feet and inches is straightforward but essential to understand for accurate measurement conversions:
To convert a measurement from feet to inches, multiply the number of feet by 12:
For example, to convert 5 feet to inches:
To convert a measurement from inches to feet, divide the number of inches by 12:
For example, to convert 24 inches to feet:
For measurements that include both feet and inches (such as 5 feet 3 inches), you can:
Conversely, to convert inches to a mixed feet and inches format:
When dealing with decimal values:
For feet to inches: Multiply the decimal feet by 12, then round as needed
For inches to feet: Divide the inches by 12, which may result in a decimal value
Our converter handles these calculations automatically, providing results with two decimal places for precision.
Our feet-inches measurement converter is designed to be intuitive and easy to use. Follow these simple steps to convert between feet and inches:
The ability to quickly convert between feet and inches is valuable in numerous fields and everyday situations:
Builders, contractors, and architects regularly work with measurements in both feet and inches:
When planning home renovations or arranging furniture:
For personal height and medical records:
For hobbyists and DIY enthusiasts:
In various sporting contexts:
For teaching and learning measurement concepts:
While our feet-inches converter focuses on these specific units, other measurement conversions you might find useful include:
The foot and inch have a rich history dating back thousands of years, evolving from human body measurements to standardized units.
The foot as a unit of measurement originated in ancient civilizations, including:
These early measurements were literally based on human feet, though the exact length varied by region and culture.
The inch has equally ancient origins:
Over centuries, efforts to standardize these measurements included:
Today, feet and inches remain in common use primarily in:
While many countries have officially adopted the metric system, the foot and inch persist in various contexts due to historical precedent, practical applications, and cultural familiarity.
Here are implementations of feet-inches conversion in various programming languages:
1' Excel formula to convert feet to inches
2=A1*12
3
4' Excel formula to convert inches to feet
5=A1/12
6
7' Excel VBA function for feet to inches conversion
8Function FeetToInches(feet As Double) As Double
9 FeetToInches = feet * 12
10End Function
11
12' Excel VBA function for inches to feet conversion
13Function InchesToFeet(inches As Double) As Double
14 InchesToFeet = inches / 12
15End Function
16
1// JavaScript functions for feet-inches conversion
2
3// Convert feet to inches
4function feetToInches(feet) {
5 return feet * 12;
6}
7
8// Convert inches to feet
9function inchesToFeet(inches) {
10 return inches / 12;
11}
12
13// Example usage
14const feet = 5.5;
15const inches = feetToInches(feet);
16console.log(`${feet} feet = ${inches} inches`);
17
18const inchesValue = 30;
19const feetValue = inchesToFeet(inchesValue);
20console.log(`${inchesValue} inches = ${feetValue} feet`);
21
1# Python functions for feet-inches conversion
2
3def feet_to_inches(feet):
4 """Convert feet to inches"""
5 return feet * 12
6
7def inches_to_feet(inches):
8 """Convert inches to feet"""
9 return inches / 12
10
11# Example usage
12feet = 6.25
13inches = feet_to_inches(feet)
14print(f"{feet} feet = {inches} inches")
15
16inches_value = 42
17feet_value = inches_to_feet(inches_value)
18print(f"{inches_value} inches = {feet_value} feet")
19
1public class MeasurementConverter {
2 /**
3 * Convert feet to inches
4 * @param feet The number of feet to convert
5 * @return The equivalent in inches
6 */
7 public static double feetToInches(double feet) {
8 return feet * 12;
9 }
10
11 /**
12 * Convert inches to feet
13 * @param inches The number of inches to convert
14 * @return The equivalent in feet
15 */
16 public static double inchesToFeet(double inches) {
17 return inches / 12;
18 }
19
20 public static void main(String[] args) {
21 double feet = 4.5;
22 double inches = feetToInches(feet);
23 System.out.printf("%.2f feet = %.2f inches%n", feet, inches);
24
25 double inchesValue = 54;
26 double feetValue = inchesToFeet(inchesValue);
27 System.out.printf("%.2f inches = %.2f feet%n", inchesValue, feetValue);
28 }
29}
30
1using System;
2
3class MeasurementConverter
4{
5 /// <summary>
6 /// Convert feet to inches
7 /// </summary>
8 /// <param name="feet">The number of feet to convert</param>
9 /// <returns>The equivalent in inches</returns>
10 public static double FeetToInches(double feet)
11 {
12 return feet * 12;
13 }
14
15 /// <summary>
16 /// Convert inches to feet
17 /// </summary>
18 /// <param name="inches">The number of inches to convert</param>
19 /// <returns>The equivalent in feet</returns>
20 public static double InchesToFeet(double inches)
21 {
22 return inches / 12;
23 }
24
25 static void Main()
26 {
27 double feet = 3.75;
28 double inches = FeetToInches(feet);
29 Console.WriteLine($"{feet} feet = {inches} inches");
30
31 double inchesValue = 36;
32 double feetValue = InchesToFeet(inchesValue);
33 Console.WriteLine($"{inchesValue} inches = {feetValue} feet");
34 }
35}
36
1<?php
2/**
3 * Convert feet to inches
4 * @param float $feet The number of feet to convert
5 * @return float The equivalent in inches
6 */
7function feetToInches($feet) {
8 return $feet * 12;
9}
10
11/**
12 * Convert inches to feet
13 * @param float $inches The number of inches to convert
14 * @return float The equivalent in feet
15 */
16function inchesToFeet($inches) {
17 return $inches / 12;
18}
19
20// Example usage
21$feet = 5.25;
22$inches = feetToInches($feet);
23echo "$feet feet = $inches inches\n";
24
25$inchesValue = 48;
26$feetValue = inchesToFeet($inchesValue);
27echo "$inchesValue inches = $feetValue feet\n";
28?>
29
Here are some common feet-to-inches and inches-to-feet conversions for quick reference:
Feet | Inches |
---|---|
1 | 12 |
2 | 24 |
3 | 36 |
4 | 48 |
5 | 60 |
6 | 72 |
7 | 84 |
8 | 96 |
9 | 108 |
10 | 120 |
Inches | Feet |
---|---|
12 | 1 |
24 | 2 |
36 | 3 |
48 | 4 |
60 | 5 |
72 | 6 |
84 | 7 |
96 | 8 |
108 | 9 |
120 | 10 |
Height in Feet and Inches | Height in Inches |
---|---|
4'0" | 48 |
4'6" | 54 |
5'0" | 60 |
5'6" | 66 |
5'10" | 70 |
6'0" | 72 |
6'2" | 74 |
6'6" | 78 |
There are exactly 12 inches in 1 foot. This is the standard conversion ratio in the imperial measurement system.
To convert feet to inches, multiply the number of feet by 12. For example, 5 feet equals 5 × 12 = 60 inches.
To convert inches to feet, divide the number of inches by 12. For example, 24 inches equals 24 ÷ 12 = 2 feet.
First, convert the feet to inches by multiplying by 12 (5 × 12 = 60 inches). Then add the additional inches (60 + 3 = 63 inches).
Multiply the decimal feet by 12. For example, 5.5 feet = 5.5 × 12 = 66 inches.
The division of a foot into 12 inches has historical origins. The duodecimal (base-12) system was common in many ancient cultures because 12 is easily divisible by 2, 3, 4, and 6, making it practical for trade and construction.
Yes, since the International Yard and Pound Agreement of 1959, the foot is standardized at exactly 0.3048 meters, making the inch exactly 2.54 centimeters in both the US and UK.
Our converter provides results accurate to two decimal places, which is more than sufficient for most practical applications. The conversion itself is exact since 1 foot equals exactly 12 inches.
While our converter is designed for positive values (as most physical measurements are positive), the mathematical conversion would be the same for negative values: multiply by 12 for feet to inches, divide by 12 for inches to feet.
To convert feet to meters, multiply by 0.3048. To convert inches to centimeters, multiply by 2.54. For example, 6 feet = 6 × 0.3048 = 1.8288 meters, and 10 inches = 10 × 2.54 = 25.4 centimeters.
National Institute of Standards and Technology. (2019). "Specifications, Tolerances, and Other Technical Requirements for Weighing and Measuring Devices." NIST Handbook 44.
International Bureau of Weights and Measures. (2019). "The International System of Units (SI)." 9th Edition.
Klein, H. A. (1988). "The Science of Measurement: A Historical Survey." Dover Publications.
Zupko, R. E. (1990). "Revolution in Measurement: Western European Weights and Measures Since the Age of Science." American Philosophical Society.
U.S. National Bureau of Standards. (1959). "International Yard and Pound Agreement." Federal Register.
Rowlett, R. (2005). "How Many? A Dictionary of Units of Measurement." University of North Carolina at Chapel Hill.
"Imperial Units." Wikipedia, Wikimedia Foundation, https://en.wikipedia.org/wiki/Imperial_units. Accessed 12 Aug. 2025.
"Foot (unit)." Wikipedia, Wikimedia Foundation, https://en.wikipedia.org/wiki/Foot_(unit). Accessed 12 Aug. 2025.
Try our feet to inches converter now to quickly and accurately convert between these common measurement units. Whether you're working on a construction project, planning home renovations, or simply need to convert height measurements, our tool makes the process simple and error-free.
Discover more tools that might be useful for your workflow