Calculate your Body Mass Index in metric (kg/cm) or imperial (lb/ft/in). Shows your BMI value, weight category, and healthy weight range instantly.
Enter body weight
Enter height without shoes
Enter height and weight to calculate BMI
Body Mass Index (BMI) compares adult weight with height. Enter metric measurements in kilograms and centimetres, or imperial measurements in pounds, feet, and inches. The calculation runs in your browser and shows a BMI value, adult WHO category, and estimated weight range for the entered height.
| Category | BMI |
|---|---|
| Underweight | Below 18.5 |
| Normal weight | 18.5–24.9 |
| Overweight | 25.0–29.9 |
| Obesity, Class I | 30.0–34.9 |
| Obesity, Class II | 35.0–39.9 |
| Obesity, Class III | 40.0 or higher |
These ranges are screening categories for adults. They are not a diagnosis or a complete measure of health.
Metric BMI divides weight in kilograms by height in metres squared:
const heightMetres = heightCentimetres / 100;
const bmi = weightKg / (heightMetres ** 2);
Imperial BMI uses pounds and total height in inches:
total_inches = feet * 12 + inches
bmi = 703 * weight_pounds / (total_inches ** 2)
Both formulas represent the same ratio after unit conversion. Use a measured height without shoes and a consistent weight unit.
For adults, the calculator converts the BMI range 18.5–24.9 into a weight range for the entered height. This estimate is useful for orientation, but it does not account for muscle mass, bone density, body-fat distribution, age, sex, or medical conditions.
BMI can help compare weight trends over time, prepare questions for a healthcare appointment, or provide a quick population-level screening estimate. It is less informative for highly muscular athletes, older adults with low muscle mass, children and teens, and people who are pregnant.
Children and teens require age- and sex-specific percentile charts rather than adult cutoffs. Speak with a qualified healthcare professional before making decisions based only on BMI, especially when a result is unexpected or changing quickly.
This tool is provided for general informational and utility purposes only. Results may be inaccurate, incomplete, outdated, or contain errors. Always verify results before relying on or using them.
Some tools may use AI, automated processing, third-party services, or server-side processing. Do not rely on these tools as a substitute for professional advice.
Use at your own risk. BestToolOnline makes no guarantees regarding the accuracy, reliability, completeness, availability, or suitability of results, to the maximum extent permitted by applicable law.
See our Terms of Service and Privacy Policy for complete details.