Six common percentage calculations in one place. Update any input and the result recalculates instantly.
Runs in your browser · No data sent anywhereMultiply the number by X and divide by 100. For 25% of 200: 200 × 25 ÷ 100 = 50.
Subtract the old value from the new value, divide by the old value, multiply by 100. Formula: ((new - old) / old) × 100. A positive result is an increase; negative is a decrease.
If X% of some number equals Y, then the original number is Y ÷ (X / 100). For example: 25% of what = 50? Answer: 50 ÷ 0.25 = 200.
Multiply the number by (1 + percentage/100). For 200 + 15%: 200 × 1.15 = 230. To subtract a percentage: 200 × (1 - 0.15) = 170.