Smart Calculators

Smart

Calculators

Unit Converter

Convert between length, mass, volume, area, temperature, pressure, energy, power, force, torque, angle, time, and data storage units with NIST-grade exact factors.

ft

Result

0.3048 m

1 ft= 0.3048 m

UnitValue
Millimeter (mm)304.8
Centimeter (cm)30.48
Meter (m)0.3048
Kilometer (km)3.048E-4
Inch (in)12
Foot (ft)1
Yard (yd)0.333333
Mile (mi)1.89394E-4
Nautical mile (nmi)1.64579E-4
Ångström (Å)3,048,000,000
Astronomical unit (AU)2.03746E-12
Light-year (ly)3.22174E-17
Parsec (pc)9.8779E-18

Unit converter. Thirteen measurement categories on one page with NIST-exact factors and shareable URL state.

A unit converter switches a value across thirteen categories — length, mass, temperature, volume, area, pressure, energy, power, force, torque, angle, time and data storage. It uses NIST and BIPM exact factors and tags every result exact or approximate, so you can tell definitionally exact conversions from ones rounded by IEEE-754 doubles.

What Is a Unit Converter?

Nearly every unit conversion — whether you are converting kilometres, kilograms, kilojoules or kilopascals — is the same two-step move: scale the input to one agreed base unit, then scale back out to the target. That single idea is why one tool can handle thirteen different kinds of quantity. The only thing that changes between length and mass and pressure is the conversion factor, and for temperature, an added offset; the procedure underneath is identical. So instead of memorising a separate rule for feet-to-metres, pounds-to-kilograms and psi-to-bar, you learn it once and it applies everywhere.
This calculator puts all thirteen quantities on one canonical URL: length (13 units, millimetre to parsec), mass (12 units, milligram to carat), temperature (5 scales, kelvin to Réaumur), volume (12 units, millilitre to UK gallon), area (10 units, square millimetre to square mile), pressure (12 units, pascal to inch of water), energy (11 units, joule to electronvolt), power (9 units, watt to mechanical horsepower), force (8 units, newton to short ton-force), torque (7 units, newton-metre to ounce-inch), angle (7 units, radian to arcsecond), time (12 units, nanosecond to decade) and data storage (14 units, bit to exbibyte) — 132 units in all. Each quantity routes through a single SI base unit: metre, kilogram, kelvin, cubic metre, square metre, pascal, joule, watt, newton, newton-metre, radian, second and byte. The factor tables come straight from NIST SP 811 Appendix B.8, the BIPM SI Brochure 9th edition, ISO 80000-3 through 80000-5, the 1959 International Yard and Pound Agreement, and the relevant IAU resolutions.
Twelve of the thirteen quantities are purely multiplicative, because their zero points coincide: 0 m, 0 kg, 0 J and 0 Pa all mean "nothing". Temperature is the one exception. Celsius and Fahrenheit start counting from a shifted zero relative to the absolute Kelvin scale, so their conversion is affine — multiply by the slope, then add the offset — rather than a plain ratio. That single offset is also the source of the most common temperature trap: a change of 5 °C is not 41 °F (that would be the reading at 5 °C), it is a change of 9 °F, because the offset of 32 cancels in differences but not in absolute readings. No other quantity behaves this way, which is exactly why the calculator switches to the offset-aware formula the moment you pick a temperature scale and leaves every other quantity on the simple ratio.
Most casual converters merge every category into one giant dropdown of 2,000 entries and treat every factor as equally trustworthy. This one does the opposite: it groups units by physical quantity, exposes the SI pivot, and labels every result exact or approximate. Metre ↔ inch is exact (both factors are finite binary fractions fixed by the 1959 agreement); Celsius ↔ Fahrenheit is tagged approximate because the 5/9 slope never terminates in IEEE-754 binary, even though it is symbolically exact by the 13th CGPM 1967 Resolution 4; degree ↔ radian is approximate because π/180 is irrational and any 64-bit double rounds it at the 16th digit. That honesty about exact-versus-approximate is what separates a converter built for engineers from one built for ad impressions. The second difference is shareable state: every choice — category, source, target, value, precision — is encoded in the URL as ?cat=length&from=meter&to=foot&v=1&p=auto, so there is no per-pair URL explosion (no /miles-to-kilometers route). The canonical URL is /tools/unit-converter and every conversion is a query-string permutation of it, which means an engineering wiki, a lab manual or a Stack Overflow comment can link to the exact conversion the reader needs.

How to Convert Between Any Units

Every conversion in this tool is two operations through a single SI base unit per category. For purely multiplicative quantities (length, mass, volume, area, pressure, energy, power, force, torque, angle, time, data storage) the formula is:
y=xafromatoy = x \cdot \frac{a_{\text{from}}}{a_{\text{to}}}
where x is your input value, a_from is the source unit's factor to the SI base, and a_to is the target unit's factor to the same base. For temperature — the only quantity with non-zero zero points relative to its absolute scale — the formula adds an offset and becomes affine:
Tout=(Tinafrom+bfrom)btoatoT_{\text{out}} = \frac{(T_{\text{in}} \cdot a_{\text{from}} + b_{\text{from}}) - b_{\text{to}}}{a_{\text{to}}}
To do it by hand, follow the same four steps regardless of category:
1. Look up the source-to-base factor. For feet to metres, a_from = 0.3048. For psi to pascals, a_from = 6894.757293168361. For Btu (IT) to joules, a_from = 1055.05585262.
2. Multiply the input by that factor to get the value in the SI base unit. 100 ft × 0.3048 = 30.48 m. 50 psi × 6894.757293168361 = 344,737.86 Pa. 1 Btu × 1055.05585262 = 1055.05585262 J.
3. Look up the target-to-base factor. For metres to inches, a_to = 0.0254. For pascals to bar, a_to = 100,000. For joules to kilowatt-hours, a_to = 3,600,000.
4. Divide the base value by the target factor. 30.48 m ÷ 0.0254 = 1200 in. 344,737.86 Pa ÷ 100,000 = 3.4474 bar. 1055.05585262 J ÷ 3,600,000 = 0.00029307 kWh.
The same procedure works for every supported unit in every category. The one trap is temperature: a 5 °C change is not 41 °F (which would be the value at 5 °C); it is a 9 °F change, because the offset cancels in differences but not in absolute readings. The calculator handles this correctly by routing through the offset-aware affine formula.
To use this calculator, pick a measurement category from the sticky category strip at the top — Length, Mass, Temperature, Volume, Area, Pressure, Energy, Power, Force, Torque, Angle, Time or Data storage. Pick a source unit from the From searchable dropdown, type a value, then pick a target unit from the To dropdown. The result updates on every keystroke; no Convert button. Click the hero result card to copy the converted value to the clipboard. Use the precision selector to switch between auto (6 significant figures, scientific notation outside the 10⁻³ to 10¹² range), or a fixed 0, 2, 4, 6, 10 or 15 decimals. The exact badge appears next to the result whenever both the source and target units are definitionally exact and the conversion does not lose information in IEEE-754; approximate fires when the slope or factor is irrational in binary (5/9 for Fahrenheit and Rankine, π/180 for degree, π/200 for gradian, π/648000 for arcsecond) or when one endpoint is too large to fit a 64-bit double without rounding (light-year, parsec).

Most-Searched Everyday Conversions at a Glance

FromToValueExact?
1 milekilometre1.609344 kmyes
1 footmetre0.3048 myes
1 inchcentimetre2.54 cmyes
1 pound (lb)kilogram0.453592 kgyes
1 troy ounce (gold)gram31.1035 gyes
100 °CFahrenheit212 °Fno (5/9 irrational)
350 °F (US oven)Celsius176.67 °Cno (5/9 irrational)
1 US gallonlitre3.785412 Lyes
1 UK gallonlitre4.54609 Lyes
1 kilowatt-hourmegajoule3.6 MJyes
1 mechanical hpkilowatt0.745700 kWyes
1 barpsi14.5038 psiyes
100 newton-metrepound-foot73.7562 lb·ftyes
1 acresquare metre4046.86 m²yes
1 degreeradian0.0174533 radno (π irrational)

Unit Conversion Formulas

y=xafromatoy = x \cdot \frac{a_{\text{from}}}{a_{\text{to}}}
  • yy = The converted value, expressed in the target unit.
  • xx = The input value, expressed in the source unit.
  • afroma_{\text{from}} = Factor that converts the source unit to its category's SI base unit (e.g. 0.3048 for foot to metre, 6894.757293168361 for psi to pascal, 1055.05585262 for Btu_IT to joule).
  • atoa_{\text{to}} = Factor that converts the target unit to the same SI base unit (e.g. 1000 for kilometre to metre, 100000 for bar to pascal, 3.6e6 for kilowatt-hour to joule).
The general multiplicative formula above covers twelve of the thirteen supported categories (length, mass, volume, area, pressure, energy, power, force, torque, angle, time, data storage). The thirteenth — temperature — uses an affine form because Celsius, Fahrenheit and Réaumur have non-zero zero points relative to the absolute (Kelvin) scale: T_out = ((T_in × a_from + b_from) − b_to) / a_to. Every factor table this calculator uses is sourced from primary metrology references:
  • Length: NIST SP 811 Appendix B.8 (inch 0.0254 m, foot 0.3048 m, mile 1609.344 m, all exact via the 1959 International Yard and Pound Agreement) + IAU Resolution B2 2012 for the astronomical unit (149,597,870,700 m exact).
  • Mass: NIST SP 811 + the 1959 International Yard and Pound Agreement (pound 0.45359237 kg exact, ounce 0.028349523125 kg exact) + troy ounce 31.1034768 g exact (ISO 80000-4) and carat 0.0002 kg exact (CIPM 1907).
  • Volume: NIST SP 811 Appendix B.8 (US gallon 3.785411784e-3 m³, US fluid ounce 2.95735295625e-5 m³, both exact) + UK Weights and Measures Act 1985 (UK gallon 4.54609e-3 m³ exact).
  • Area: derived from length (acre 4046.8564224 m² exact, square mile 2589988.110336 m² exact).
  • Temperature: 13th CGPM 1967 Resolution 4 (0 °C = 273.15 K exact) + BIPM SI Brochure §2.3.1 (kelvin) + ISO 80000-5:2019.
  • Pressure: NIST SP 811 (psi 6894.757293168361 Pa exact, atmosphere 101325 Pa exact via ISO 2533) + 3rd CGPM 1901 (gn = 9.80665 m/s² exact, anchoring kgf/cm² and water-column units).
  • Energy: NIST SP 811 (Btu_IT 1055.05585262 J exact, calorie_th 4.184 J exact, calorie_IT 4.1868 J exact) + 2019 SI redefinition (electronvolt 1.602176634e-19 J exact via fixed elementary charge).
  • Power: NIST SP 811 (mechanical hp 745.6998715822702 W exact, metric hp 735.49875 W exact via CGPM 1901, electric hp 746 W exact via IEEE).
  • Force: NIST SP 811 (pound-force 4.4482216152605 N exact, kilogram-force 9.80665 N exact, ounce-force 0.27801385095378125 N exact).
  • Torque: derived from force × length (pound-foot 1.3558179483314003 N·m exact, kgf·m 9.80665 N·m exact).
  • Angle: BIPM SI Brochure §2.3.4 (radian) + ISO 80000-3:2019 (degree π/180 rad, gradian π/200 rad, arcsecond π/648000 rad — all symbolically exact, all irrational in IEEE-754).
  • Time: BIPM SI Brochure §2.3.1 (second) + the non-SI units accepted for use with the SI (minute 60 s, hour 3600 s, day 86400 s — all exact); week, fortnight, month (30 d), year (365 d) and decade derive exactly from the second.
  • Data storage: IEC 80000-13 (byte = 8 bits exact; decimal kilobyte/megabyte/gigabyte… as powers of 1000; binary kibibyte/mebibyte/gibibyte… as powers of 1024 — every factor exact) + NIST guidance on binary prefixes.
The exact badge fires only when both endpoints are factors representable bit-perfectly as 64-bit doubles. So metre ↔ inch is exact (both factors are finite binary fractions), psi ↔ kPa is exact, joule ↔ kilowatt-hour is exact. But degree ↔ radian is approximate (π/180 is irrational), Celsius ↔ Fahrenheit is approximate (5/9 is non-terminating in binary), and light-year ↔ kilometre is approximate (the integer metre value of a light-year is too large to fit a double without rounding the last digit). The badge is informational honesty, not a quality complaint.

Worked Conversion Examples Across the Categories

Length: 1 mile to kilometres (exact since 1959)

Pick Length, set From = Mile, To = Kilometer, Value = 1. The formula gives 1 × 1609.344 / 1000 = 1.609344 km exact. Both factors are fixed by the 1 July 1959 International Yard and Pound Agreement (1 mi = 1609.344 m exact, 1 km = 1000 m exact), so the conversion earns the exact badge. The 1.61 km approximation you see in driving handbooks accumulates 224 m of drift over 1000 km — fine for road trips, fatal for surveying.

Volume: 1 US gallon to litres

Pick Volume, set From = US gallon, To = Liter, Value = 1. The US gallon is defined as exactly 231 cubic inches (NIST SP 811 Appendix B.8), which works out to 3.785411784e-3 m³ exact. Dividing by 1e-3 m³/L gives 3.785411784 L exact. Note this is not the UK (imperial) gallon, which is 4.54609 L exact by the UK Weights and Measures Act 1985 — the two differ by ~20%, a constant source of confusion in cross-Atlantic recipes.

Area: 1 acre to square metres

Pick Area, set From = Acre, To = Square meter, Value = 1. The international acre is 4840 square yards exact, and the international yard is 0.9144 m exact, so 1 acre = 4840 × 0.9144² = 4046.8564224 m² exact. This is the value you find on every official land-survey reference; the 4047 m² rounding common in real-estate listings is off by 0.0035%, irrelevant for property tax but visible in cadastral GIS work.

Temperature: 100 °C to Fahrenheit (the boiling-water anchor)

Pick Temperature, set From = Celsius, To = Fahrenheit, Value = 100. The affine formula gives 100 × 9/5 + 32 = 180 + 32 = 212 °F in symbolic form. At 15-decimal precision the IEEE-754 representation reads 211.99999999999997 °F — a single ulp short of 212, the visible signature of the irrational 5/9 slope. The result is honestly tagged approximate because the slope is non-terminating in binary, even though the legal Fahrenheit anchor 32 °F = 0 °C is exact by the 13th CGPM 1967.

Pressure: 1 atm to psi (the sea-level anchor)

Pick Pressure, set From = Atmosphere, To = Pound per square inch, Value = 1. The standard atmosphere is 101325 Pa exact (ISO 2533:1975, 10th CGPM 1954). Dividing by the psi factor 6894.757293168361 Pa gives 14.69594877551345 psi — the value you find on every pressure regulator and SCUBA tank gauge worldwide. The conversion is tagged exact in this calculator because both endpoints are exact rationals in IEEE-754. Typical engineering shorthand 14.696 psi is a 5-significant-figure rounding.

Energy: 1 kWh to joules and Btu

Pick Energy, set From = Kilowatt-hour, To = Joule, Value = 1. By definition 1 kWh = 1 kW × 3600 s = 3,600,000 J = 3.6 MJ exact. Switch To = Btu (IT) and the result is 3,600,000 / 1055.05585262 = 3412.142 Btu — the value on the back of every US gas meter. The Btu_IT factor of 1055.05585262 J is exact per NIST SP 811 Appendix B.8, even though it was originally derived from the International Table calorie (4.1868 J × 251.99576... heat capacity); NIST fixes the rounded value as the canonical definition.

Power: 250 mechanical hp to kilowatts (US car spec)

Pick Power, set From = Mechanical horsepower, To = Kilowatt, Value = 250. Mechanical hp = 550 ft·lbf/s = 745.6998715822702 W exact (NIST SP 811, derived from the 1959 IYP and CGPM 1901 standard gravity). The result is 250 × 745.6998715822702 / 1000 = 186.4250 kW. Note this is NOT the same as 250 metric hp (PS) — that would be 250 × 735.49875 / 1000 = 183.875 kW. The 1.5% difference is why US, European and Japanese car specs use different hp variants; misusing them is a common engineering error this calculator surfaces.

Force: 1 kgf to newtons and pound-force

Pick Force, set From = Kilogram-force, To = Newton, Value = 1. The kilogram-force is defined as the gravitational pull on a 1 kg mass at standard gravity gn = 9.80665 m/s² (3rd CGPM 1901, exact), so 1 kgf = 9.80665 N exact. Switch To = Pound-force and the result is 9.80665 / 4.4482216152605 = 2.20462 lbf — the same numerical value as the kg-to-pound mass conversion (because both are anchored to the same kg ↔ lb mass ratio of 0.45359237). Engineers use kgf and lbf interchangeably with kg and lb in many older datasheets; the calculator treats them as their own units to keep the dimensional check honest.

Torque: 100 N·m to pound-foot (wrench-spec conversion)

Pick Torque, set From = Newton-meter, To = Pound-foot, Value = 100. The pound-foot is defined as lbf × ft = 4.4482216152605 × 0.3048 = 1.3558179483314003 N·m exact (NIST SP 811, IEEE-754 product of two NIST-exact rationals). The result is 100 / 1.3558179483314003 = 73.7562 lb·ft — the value on every torque-wrench manual that lists both SI and US-customary settings. Use this for fastener-spec sheets, axle nuts, and engine head bolts where misreading the torque can crack a casting.

Angle: 1 turn to degrees, radians and arcseconds

Pick Angle, set From = Turn, To = Degree, Value = 1. By definition 1 turn = 2π rad = 360° exact in symbolic form. The calculator returns 360 ° at 0 decimals; at 15 decimals it shows 359.99999999999994 because the conversion goes through 2π in IEEE-754 doubles. Switch To = Radian and the result is 6.283185307179586 rad (the IEEE-754 double of 2π). Switch To = Arcsecond and the result is 1,296,000 arcsec — useful for astronomers comparing CCD plate scales (typical seeing is 1 arcsec, the Moon's angular diameter is 1864 arcsec, the Sun's is 1920 arcsec).

Comparative table: representative units across the categories

CategoryUnitFactor to SI baseExact?
Lengthfoot (ft)0.3048 myes
Lengthmile (mi)1609.344 myes
VolumeUS gallon (gal)3.785411784e-3 m³yes
VolumeUK gallon4.54609e-3 m³yes
Areaacre4046.8564224 m²yes
TemperatureCelsius (°C)slope 1, offset 273.15 Kyes
TemperatureFahrenheit (°F)slope 5/9, offset 459.67×5/9 Kno (5/9 irrational in binary)
Pressurepsi6894.757293168361 Payes
Pressureatmosphere (atm)101325 Payes
EnergyBtu (IT)1055.05585262 Jyes
EnergykWh3,600,000 Jyes
Powermechanical hp745.6998715822702 Wyes
Powermetric hp (PS)735.49875 Wyes
Forcepound-force (lbf)4.4482216152605 Nyes
Torquepound-foot (lb·ft)1.3558179483314003 N·myes
Angledegree (°)π/180 radno (π irrational)
Use this table to do conversions by hand: divide source-in-base by target-in-base. For example, 1 mile in feet = 1609.344 / 0.3048 = 5280 ft exact.

Most common conversions people look up

These are the unit pairs people search for most often, with the exact NIST/BIPM values. Paste them into the calculator for full 15-decimal precision.
  • Metres to feet: 1 m = 3.28084 ft (irrational; 1 ft = 0.3048 m exact)
  • Inches to centimetres: 1 in = 2.54 cm exact
  • Kilometres to miles: 1 km = 0.621371 mi
  • Litres to US gallons: 1 L = 0.264172 gal
  • Square metres to square feet: 1 m² = 10.7639 ft²
  • Celsius to Fahrenheit: 0 °C = 32 °F, 100 °C = 212 °F, −40 °C = −40 °F
  • Bar to psi: 1 bar = 14.5038 psi
  • Joules to calories (thermochemical): 1 J = 0.239006 cal
  • Kilowatts to mechanical hp: 1 kW = 1.34102 hp
  • Newtons to pound-force: 1 N = 0.224809 lbf
  • Newton-metres to pound-foot: 1 N·m = 0.737562 lb·ft
  • Degrees to radians: 1° = 0.0174533 rad (π/180)

Unit Converter — Frequently Asked Questions

Is this unit converter free?

Yes. The calculator runs entirely in your browser, requires no account, and has no signup wall. The embeddable iframe version is also ad-free, so you can drop it into engineering portals, school materials or technical blogs without exposing readers to third-party trackers. The single-purpose sister converters (length, mass, temperature, volume, area, pressure, energy, power, force, torque, angle, time, data storage) live at the same /tools/ root and are also free.

What measurement categories does it cover?

Thirteen: length, mass, temperature, volume, area, pressure, energy, power, force, torque, angle, time and data storage. Each routes through a single SI base unit — metre, kilogram, kelvin, cubic metre, square metre, pascal, joule, watt, newton, newton-metre, radian, second and byte. Speed and electrical quantities are not yet on the mega-converter; for those, use a dedicated single-purpose calculator.

How accurate are the conversion factors?

Every multiplicative factor is sourced from NIST SP 811 Appendix B.8, the BIPM SI Brochure 9th edition, ISO 80000-3 through 80000-5, the 1959 International Yard and Pound Agreement, or the relevant IAU resolution. Factors flagged exact (boldface in NIST SP 811) come through this calculator as definitionally exact rationals; the remainder are tagged approximate either because the legal definition is conventional (torr, mmHg, cmH₂O) or because the slope is irrational in IEEE-754 binary (5/9 for Fahrenheit, π/180 for degree). At 15-decimal precision you are reading the full IEEE-754 mantissa.

Why does the calculator show an exact or approximate badge?

Because not every conversion is mathematically clean. A conversion is tagged exact when both source and target factors are representable bit-perfectly as 64-bit doubles (e.g. metre ↔ inch, pascal ↔ bar, joule ↔ kilowatt-hour). It is tagged approximate when the slope is irrational in IEEE-754 (5/9 for Fahrenheit, π/180 for degree), when the legal definition is itself a conventional rounded value (mmHg = 133.322387415 Pa), or when one endpoint is too large to fit a double without rounding (light-year, parsec). The badge is informational honesty, not a quality complaint.

How does the unit converter formula work?

For purely multiplicative quantities (length, mass, volume, area, pressure, energy, power, force, torque, angle, time, data storage): output = input × source-factor ÷ target-factor, where both factors are expressed relative to the category's SI base unit. For temperature, which has non-zero zero points: output = (input × source-slope + source-offset − target-offset) ÷ target-slope, an affine transformation through the Kelvin scale. Both forms are written out in the Formula section above.

Can I embed this converter on my site?

Yes. The embeddable version lives at /widget/unit-converter; copy the iframe snippet from the embed page. The iframe is ad-free, dependency-free, mobile-responsive, and inherits no third-party trackers — unlike most multi-category converter embeds available today, which serve ads or tracking pixels inside the iframe.

Can I share a specific conversion by URL?

Yes. Category, source, target, value, and precision encode into the query string (?cat=length&from=meter&to=foot&v=1&p=auto). Copy the URL bar — the recipient lands on the same conversion. One canonical URL: /tools/unit-converter.

Is 1 inch exactly 2.54 cm?

Yes. Since 1 July 1959 the inch has been defined as exactly 25.4 mm — equivalently 2.54 cm — by the International Yard and Pound Agreement. It is the only common imperial unit whose metric value is a finite decimal.

How many feet are in a metre?

One metre equals 3.280839895013… feet. The commonly quoted 3.28084 is a six-significant-figure rounding. The exact direction is the inverse: one foot is exactly 0.3048 metres, fixed by the 1959 International Yard and Pound Agreement. For most practical work, 3.28084 ft/m is enough; for surveying or aerospace, take more decimals — at 15-decimal precision this calculator shows 3.280839895013123 ft/m.

What is the difference between a US gallon and an Imperial gallon?

A US gallon is exactly 3.785411784 litres (NIST SP 811 Appendix B.8); an Imperial (UK) gallon is exactly 4.54609 litres (UK Weights and Measures Act 1985). They differ by about 20%, which is why US and UK fuel economy figures cannot be compared directly — 30 mpg (US) is 36 mpg (UK) for the same car. The calculator surfaces both as separate units to keep the dimensional check honest.

Why are there three horsepower units?

Because the industry never agreed on one. Mechanical horsepower (745.6998715822702 W exact) is the US/UK automotive standard, derived from 550 ft·lbf/s. Metric horsepower (735.49875 W exact, also known as PS in German, CV in Romance languages, л.с. in Russian) is the European and Japanese automotive standard, derived from 75 kgf·m/s. Electric horsepower (746 W exact) is the US electric-motor standard set by IEEE C57.12.00. A 250 hp car spec is 186 kW in mechanical hp, 184 kW in metric hp — the 1.5% difference is small but visible on a dyno trace.

How does the converter handle temperature offsets?

Unlike length or mass, temperature scales do not all start at zero relative to the absolute (Kelvin) scale. Celsius and Réaumur both have a 273.15 K offset; Fahrenheit has a 459.67 × 5/9 K offset; Rankine and Kelvin both start at zero (absolute scales). The calculator uses an affine formula — multiply by the slope, add the offset, then subtract the target offset and divide by the target slope — instead of the multiplicative formula used for every other category. This is why the Temperature row in the calculator UI looks identical but the math underneath is different.

Should I use the mega converter or one of the single-quantity ones?

Use the mega converter when you bounce between categories frequently — sketching a building (length + area + volume), tuning an engine (power + torque + force), or planning a trip (length + temperature). Use the single-quantity sister calculators (/tools/length-converter, /tools/temperature-converter, etc.) when you want a deeper dive on one category, including category-specific FAQs, history of the units, and longer worked examples. Both are free, both use the same NIST/BIPM factors, both deep-link by URL.

What precision should I pick?

Auto-precision (6 significant figures) is fine for everyday conversions — recipe rescaling, road-trip distances, weather. Engineers double-checking a datasheet usually want 10 decimals; metrologists comparing against a primary standard want 15 decimals (the full IEEE-754 double mantissa). Construction trades almost never need more than 4. The precision setting is persisted in the URL, so you can save a copy-paste-friendly preset (?p=10 or ?p=4) for your spreadsheet workflow.


Sources & References

  1. NIST SP 811 Appendix B.8 — Factors for units listed alphabetically (boldface = exact). Source of the inch (2.54e-2 m), foot (3.048e-1 m), pound-force (4.4482216152605 N), Btu_IT (1055.05585262 J), psi (6894.757293168361 Pa), and US fluid-measure factors used here.
  2. NIST Guide to the SI, Appendix B — Conversion factors (landing page covering exact, approximate, and field-specific tables, plus the rounding and significant-figure rules).
  3. BIPM — SI Brochure 9th edition (2019). Definitions of the seven SI base units (metre, kilogram, second, ampere, kelvin, mole, candela) after the 2019 redefinition, plus the table of coherent derived units used here (joule, watt, pascal, newton, newton-metre, radian).
  4. ISO 80000 — Quantities and units (Parts 1 to 14). Part 3 (space and time) defines angle units, Part 4 (mechanics) defines force, energy, power and torque, Part 5 (thermodynamics) defines the kelvin and Celsius offsets — all of which the engine implements verbatim.
  5. Wikipedia — International Yard and Pound Agreement (1 July 1959). Defines the yard as exactly 0.9144 m and the pound as exactly 0.45359237 kg, from which the inch (0.0254 m), foot (0.3048 m), mile (1609.344 m), pound-force (4.4482216152605 N) and acre (4046.8564224 m²) derive exactly.
  6. IAU — 2012 General Assembly Resolution B2. Fixes the astronomical unit at exactly 149,597,870,700 m (used here for AU↔km conversions; combined with IAU 2015 Resolution B2 it also fixes the parsec at exactly 648,000/π AU).
  7. BIPM — 3rd CGPM (1901), Resolution 2. Declares standard gravity g_n = 9.80665 m/s² exactly, the anchor for kilogram-force (9.80665 N), pound-force (lb × g_n), kgf·m torque (9.80665 N·m), and the metric horsepower (735.49875 W).