KG to LBS Conversion: A Practical Guide
Convert kilograms to pounds, ounces, grams, and stones. With exact formulas.
Why convert kg to lbs?
The kilogram is the SI base unit of mass and is used by every country that has adopted the metric system β which is most of them. The pound is the everyday mass unit in the United States (and to a lesser extent, the UK and Canada for body weight). Whenever you read a US recipe, weigh yourself on an American scale, check a dumbbell at a US gym, or quote a baby's weight from a US birth certificate, you encounter pounds.
Three more units show up in the same contexts:
- Ounce (oz): 1 lb = 16 oz. Used in US cooking.
- Gram (g): 1 kg = 1,000 g. The metric base unit, used worldwide for small masses.
- Stone (st): 1 st = 14 lb. Still common in the UK and Ireland for body weight.
The good news: the conversion is one number, and it's exact. Memorize 1 kg = 2.20462 lbs and you can do the math in your head for any value.
The exact formulas
``` 1 kg = 2.2046226218 lbs (exact) 1 kg = 35.27396195 oz 1 kg = 1,000 g 1 lb = 0.45359237 kg (exact) 1 lb = 453.59237 g 1 st = 14 lb = 6.35029318 kg ```
Worked examples:
- 70 kg β lbs: 70 Γ 2.20462 = 154.32 lbs
- 150 lbs β kg: 150 Γ 0.45359237 = 68.04 kg
- 5 kg β oz: 5 Γ 35.27396 = 176.37 oz
- 12 st β kg: 12 Γ 6.35029 = 76.20 kg
A useful mental shortcut: divide pounds by 2.2 to get a quick kg estimate. 154 lbs / 2.2 β 70 kg. The result is within 0.5% β close enough for everyday use, not for shipping manifests.
Quick reference table
| kg | lbs | oz | st (stone) | |-----:|--------:|---------:|-----------:| | 1 | 2.20 | 35.27 | 0.16 | | 5 | 11.02 | 176.37 | 0.79 | | 10 | 22.05 | 352.74 | 1.57 | | 25 | 55.12 | 881.85 | 3.94 | | 50 | 110.23 | 1,763.70 | 7.87 | | 70 | 154.32 | 2,469.18 | 11.02 | | 100 | 220.46 | 3,527.40 | 15.75 |
Method 1: Use UtilBoxx's Weight Converter (Recommended)
The fastest, most private, and most accurate way to convert weight in your browser is the UtilBoxx Weight Converter. It supports kilograms, grams, milligrams, pounds, ounces, stones, US tons, and metric tons, with bidirectional instant conversion and a clean interface. Everything runs in your browser β no server, no upload, no logs.
How to use it:
- Go to utilboxx.com/en/tools/unit/weight
- Type a value in any field (kg, g, mg, lbs, oz, st, etc.)
- All other fields update instantly
- Copy the result with one click
Why we recommend this method:
- 100% free, no signup, no email, no ads
- Privacy-first: nothing leaves your browser
- All common weight units: kg, g, mg, lbs, oz, st, tons
- High precision: no rounding errors
- Works on any device with a browser
If you weigh packages, track fitness, or interpret US recipes, bookmarking this tool will save time every week.
Method 2: Google Search
For a one-off conversion, Google is the fastest path. Type `70 kg to lbs` or `150 pounds in kg` directly into the search box. Google replies with a built-in converter card at the top of the results, including the formula and a small calculator.
Pros: zero friction, no click required, works on any device with a browser.
Cons: requires an internet connection, only good for one value at a time, and Google logs every conversion. For privacy-sensitive values (medical weight, prescription dosing), prefer an offline method.
Method 3: Python (or any language)
A one-liner in Python handles every conversion:
```python KG_TO_LBS = 2.2046226218 KG_TO_OZ = 35.27396195 KG_TO_ST = 0.1574730444 LB_TO_KG = 0.45359237
def kg_to_lbs(kg): return kg KG_TO_LBS def lbs_to_kg(lb): return lb LB_TO_KG
print(kg_to_lbs(70)) # 154.32358... print(lbs_to_kg(150)) # 68.0388555 print(70 * 35.27396) # 2469.1772 oz ```
JavaScript, with the same idea:
```js const kgToLbs = kg => kg 2.2046226218; const lbsToKg = lb => lb 0.45359237; console.log(kgToLbs(70).toFixed(2)); // 154.32 ```
For batch conversion of a CSV (say, a list of patient weights in kg that you want in lbs for a US report), a 3-line pandas script does it:
```python import pandas as pd df = pd.read_csv("weights.csv") df["lbs"] = df["kg"] * 2.20462 df.to_csv("weights_lbs.csv", index=False) ```
Method 4: CLI with units (Linux/macOS)
The GNU `units` utility handles weight conversion on the command line. Install on macOS with Homebrew (`brew install units`).
```bash # Convert 70 kg to pounds units "70 kg" "lb" # 154.3236
# 150 lbs to kg units "150 lb" "kg" # 68.03886
# 1 stone to kg units "1 stone" "kg" # 6.350293 ```
`units` understands many synonyms: `lb`, `lbs`, `pound`, `pounds`, `kg`, `kilogram`, `g`, `gram`, `oz`, `ounce`, `stone`, `ton`, `tonne`, etc. It also accepts compound expressions like `2 lb 3 oz`. This is the fastest path for one-off weight math in a shell session.
Common questions
Is 1 kg exactly 2.20462 lbs?
Yes, in practical terms. The exact international avoirdupois pound is defined as exactly 0.45359237 kg, making 1 kg = 2.2046226218... lbs to full precision. For everyday use, 2.20462 (5 decimals) is more than enough. For scientific or shipping use, use the full value or a tool that displays 6+ decimal places.
What about troy ounces?
Troy ounces (oz t) are a different unit used for precious metals: 1 troy oz = 31.1034768 g, while 1 avoirdupois oz = 28.349523125 g. The converter above uses avoirdupois. Gold, silver, and platinum are quoted in troy ounces. If you are trading commodities, make sure you know which ounce you are dealing with β a troy ounce is about 10% heavier than an avoirdupois ounce.
Why does the US still use pounds?
Historical and cultural inertia. The pound dates back to Roman times (the word "pound" comes from Latin libra, which is why the symbol is "lb"). The metric system was proposed in 1795 and has been adopted by most countries, but the US has never mandated a switch. Pounds are deeply embedded in US commerce, cooking, sports (boxing, weightlifting, wrestling are weighed in lbs), and body weight. Switching would require retooling scales, packaging, and decades of public re-education.
Is body weight in the UK measured in kg or stones?
Both, in different contexts. Stones (1 st = 14 lb = 6.35 kg) are still widely used informally for body weight β "I weigh 12 stone 4". Medical records, gyms, and most official contexts use kg. The UK has officially used metric since 1965 but never banned stones. Ireland is similar.
How do I convert "5'10" and 165 lbs" to metric?
Height and weight use different conversions:
- Feet/inches to cm: 5 ft 10 in = (5 Γ 12 + 10) Γ 2.54 = 70 Γ 2.54 = 177.8 cm
- Pounds to kg: 165 Γ 0.45359237 = 74.84 kg
For body mass index, you need both. BMI = weight (kg) / height (m)Β² = 74.84 / 1.778Β² = 23.7, which is in the "normal" range.
Can I use a kitchen scale for body weight?
Most kitchen scales top out at 5 kg (11 lbs) and are not designed for body weight. A bathroom scale is the right tool for body weight and is accurate to Β±0.1 kg / 0.2 lbs at most. For medical use, clinical scales go to 0.01 kg / 0.02 lbs.
Conclusion
Kilograms to pounds is one of the simplest conversions to memorize. 1 kg = 2.20462 lbs is exact to 5 decimals, and a one-line mental shortcut (divide lbs by 2.2) gets you within 0.5% for everyday use. For occasional conversions, the UtilBoxx Weight Converter is private, free, and works offline once loaded. For batch work, Python and the `units` CLI handle thousands of values without leaving the terminal. And for occasional one-offs, Google or a voice assistant gives an instant answer.
Whichever method you pick, the math is identical: kg Γ 2.20462 = lbs, or equivalently lbs Γ 0.45359237 = kg.