Multiply by a number and you have converted a unit. That is true for length, mass and volume, and it is quietly false for temperature — and the unit names themselves are less trustworthy than the arithmetic. Two of the most common units in daily use mean different quantities depending on who is speaking.
A gallon is 20% larger depending on who says it
The US gallon is 3.785 litres. The imperial gallon, still used in the UK and Canada, is 4.546 litres. That is a 20% gap between two units with the same name, and it is the reason fuel economy figures never compare across the Atlantic without conversion — 40 miles per gallon means two genuinely different things.
This tool labels it "US Gallon" explicitly rather than just "gallon", which is the right call and one a surprising number of converters do not make. If a converter says only "gallon", you have no way to know which one you got, and the answer is wrong by a fifth if you guessed wrong.
The fluid ounce reverses the direction, which makes it worse. The US fluid ounce is 29.57 ml and the imperial one is 28.41 ml — here the imperial unit is the smaller one, even though the imperial gallon is the larger. There is no intuition to fall back on. You have to know.
The ounce on this page is not the one gold is sold in
The tool's ounce is the avoirdupois ounce, 28.3495 grams — the ordinary one, the one in a recipe or on a parcel. Precious metals are sold by the troy ounce, which is 31.1035 grams.
That is a 9.7% difference between two units both called "an ounce". Convert a kilogram of gold using the wrong one and you are out by 97 grams, which at any gold price is a serious amount of money. The tool is right for everything except precious metals, and it does not warn you — so this is the warning.
Temperature does not multiply, and a difference is not a value
Every other unit here converts by scaling: a metre is always 3.28 feet, whatever the number in front. Temperature scales have an offset as well, because their zeroes are in different places, and that changes what conversion means.
The consequence catches people constantly. A temperature of 10°C is 50°F — multiply by 9/5 and add 32. But a rise of 10°C is 18°F, not 50°F. The +32 exists to move the zero point, and a difference has no zero to move. If you are converting "the temperature went up by ten degrees", you must not add the 32, and the tool cannot tell which one you meant because both look like the number 10.
The same offset means temperature ratios are meaningless. Is 20°C twice as warm as 10°C? In Fahrenheit those same two temperatures are 68 and 50, a ratio of 1.36. The ratio changed because the scale changed, which is proof the question was not well formed. Only Kelvin has a true zero, and there 20°C and 10°C are 293.15 and 283.15 — a ratio of 1.035. That is the real answer: barely any warmer at all, in the only sense in which "twice as warm" could mean anything.
Unit confusion has destroyed real things
In 1999 NASA lost the Mars Climate Orbiter. The spacecraft was intact, the navigation was competent, the arithmetic was correct. Lockheed Martin's software reported thruster impulse in pound-force seconds; NASA's software read those numbers as newton-seconds. Neither side checked. The probe came in too low and was destroyed, at a cost of around $327 million.
The lesson is not "be careful with units", which nobody has ever acted on. It is that a bare number is not data. The unit is part of the value, and any system that passes quantities as plain numbers is one misunderstanding away from this — which is why good engineering codebases carry the unit in the type or at minimum in the variable name. delaySeconds and delayMs are honest; delay is a bug waiting for a maintainer.
Common questions
Is anything sent to a server?
No. This tool is marked "client": the conversion is one multiplication in your browser tab. Nothing is transmitted.
Which gallon does this use?
The US gallon, 3.785 litres, and it says so on the selector. If you are working with a British or Canadian source, the number you have is probably the imperial gallon at 4.546 litres and you will need to account for the 20% yourself.
Why does converting there and back not give me the number I started with?
Floating-point rounding, usually invisible at the precision shown here. Computers store decimals in binary, and most decimal fractions have no exact binary form — which is why 0.1 + 0.2 gives 0.30000000000000004 in every language that uses IEEE 754 doubles, JavaScript included. The error is far below anything that matters for a physical measurement, but it is there, and it is why you should never compare two converted values with an equality check.
Is a tonne the same as a ton?
No, and there are three of them. A metric tonne is 1,000 kg. A US short ton is 907 kg. A UK long ton is 1,016 kg. The US and UK versions differ by 12% and are both spelled "ton". If a figure matters and the source is ambiguous, the spelling will not save you — you have to find out which country wrote it.
Can I convert a length to a weight?
No, and no tool can, because the question does not have an answer. Metres and kilograms measure different dimensions. What you might mean is a density calculation — how much does a litre of this substance weigh — and that needs to know the substance. This tool converts within a dimension, which is the only conversion that is a fact rather than a lookup.