Inch to Foot Conversion – Easy Formula, Table, and Online Convert inches to feet Dekho
Current:feet = inches / 12
Both directions are supported:
feet = inches / 12
inches = feet × 12
Inch and foot are imperial length units. For neat display, round to 2–4 decimals where appropriate. For fractional feet, some contexts prefer feet-inches notation (e.g., 5 ft 7 in).
Example (in → ft): 30 in ÷ 12 = 2.5 ft
`;
sh.appendChild(root);// Helpers
var $ = function(s){ return sh.querySelector(s); };
function fmt(n){
if(!isFinite(n)) return '—';
var a = Math.abs(n);
if(a && (a < 1e-3 || a >= 1e6)) return n.toExponential(6);
return (Math.round(n*1e6)/1e6).toString();
}// Elements
var res = $('#res');
var ans = $('#answer');
var inch = $('#inch');
var ft = $('#ft');
var btnCalc = $('#calc');
var btnClear = $('#clear');
var btnSwap = $('#swap');
var dirChip = $('#dir');
var activeFormula = $('#active-formula');var mode = 'in2ft'; // or 'ft2in'function setMode(m){
mode = m;
if(mode==='in2ft'){
inch.removeAttribute('readonly'); inch.type='number';
ft.setAttribute('readonly',''); ft.type='text'; ft.value='';
dirChip.textContent = 'Active: in → ft';
activeFormula.innerHTML = 'feet = inches / 12';
} else {
ft.removeAttribute('readonly'); ft.type='number';
inch.setAttribute('readonly',''); inch.type='text'; inch.value='';
dirChip.textContent = 'Active: ft → in';
activeFormula.innerHTML = 'inches = feet × 12';
}
res.classList.remove('show');
}function convert(){
var v, out;
if(mode==='in2ft'){
v = parseFloat(inch.value); if(!isFinite(v) || v < 0) v = 0;
out = v / 12; // exact relation
ft.value = fmt(out);
ans.textContent = fmt(v) + ' Inches = ' + fmt(out) + ' Feet';
} else {
v = parseFloat(ft.value); if(!isFinite(v) || v < 0) v = 0;
out = v * 12;
inch.value = fmt(out);
ans.textContent = fmt(v) + ' Feet = ' + fmt(out) + ' Inches';
}
res.classList.add('show');
}btnCalc.addEventListener('click', convert);
btnClear.addEventListener('click', function(){
inch.value = '';
ft.value = '';
res.classList.remove('show');
});
btnSwap.addEventListener('click', function(){ setMode(mode==='in2ft' ? 'ft2in' : 'in2ft'); });// Init
setMode('in2ft');
});
}
if(document.readyState==='loading') document.addEventListener('DOMContentLoaded', init); else init();
})();
Have you ever felt confused between inches and feet while measuring something? This is very common because in India, most people use centimeters and meters, while inches and feet are more popular in countries like the US, Canada, and the UK. However, people working in fields like construction, furniture design, fashion, mobile screen sizing, or architecture often need Inch to Foot Conversion.
Inch (Symbol: in) is a traditional unit of length that is part of the Imperial and US Customary System.
1 inch = 25.4 millimeters
1 foot = 12 inches
1 yard = 36 inches
📜 History: The word “inch” comes from the Latin word “uncia,” meaning “one-twelfth of a Roman foot.” In the past, an inch was defined by the length of three barley grains. Old measurement systems often used human body parts as units. The width of the thumb was used to estimate an inch.
📌 Current Use: Today, inches are used in electronics (TV and mobile screen sizes), plumbing pipes,
What is a Foot?
Foot (Symbol: ft) is another traditional unit of length.
1 foot = 0.3048 meters
1 foot = 12 inches
📜 History: The concept of a foot is very old. In Greek, Roman, and Medieval systems, the foot had different sizes. Its name comes from the human body part (foot). In 1959, the foot was standardized and fixed at 0.3048 meters.
📌 Current Use:
Aviation (airplane altitude measurements)
Real estate (land size and buildings)
Construction and architecture
In the US, Canada, and UK, daily height measurements are also in feet.
🇮🇳 History of Inch and Foot in India
The inch-foot-yard system became popular in India during the British colonial era. In the past, farmers measured their land using “bigha,” “katha,” and “gaj.” After independence, India officially adopted the Metric System (cm, m, km) in 1956.
Even today, the inch-foot system is quite common in construction, carpentry, and the market. Tailors and furniture makers also use inches.
अब आपने Inch to Foot Conversion का पूरा detail समझ लिया है। चाहे आप carpenter हों, architect हों, gym trainer हों या online shopping करते हों, यह knowledge हर जगह काम आएगी। अगर आप quick calculation चाहते हैं, तो एक Online Unit Converter tool bookmark कर लें।