SI prefixes let you write very large and very small quantities compactly by attaching a single letter to a unit. This reference lists every official prefix alongside its symbol, power of ten, and full numeric multiplier, and includes a converter to rescale a value from one prefix to another.
How it works
Each prefix represents a fixed power of ten. From kilo (10^3) upward and milli (10^-3) downward the steps are powers of one thousand, which is why they map cleanly onto engineering notation — notation where the exponent is always a multiple of three. The four small exceptions near unity (deca 10^1, hecto 10^2, deci 10^-1, centi 10^-2) step by ten instead.
To convert a value between two prefixes the tool simply applies the difference of their exponents:
result = value * 10^(sourceExponent - targetExponent)
So 2.5 giga in mega is 2.5 * 10^(9 - 6) = 2500 mega. No unit information is
needed because both endpoints share the same base unit.
Tips and notes
- Capitalisation is meaningful:
M(mega, 10^6) andm(milli, 10^-3) differ by a factor of a billion. Always preserve case. - Prefixes do not stack: there is no such thing as a millikilometre — write it as a metre.
- The 2022 additions ronna, quetta, ronto, and quecto extend the range to ±10^30, mainly for data storage and astrophysics.
- Engineering notation keeps the mantissa in the 1–999 range, which is why it pairs naturally with these prefixes in spec sheets and calculators.