Skip to content

Percentage Calculator

Last verified May 2026 — runs in your browser
What is X% of Y?
%
?
20

Quick Percentages

Percentage Formula

Result = (Percentage / 100) × Value

10% of 200 = (10 / 100) × 200 = 20

Percentage Calculator — Calculate Percent of Any Number Online

Type a percentage and a base value ("15% of 80"), or hit one of the quick buttons (5, 10, 15, 20, 25, 50%) and the page returns the result with the formula spelled out underneath: 15% × 80 = 0.15 × 80 = 12. Useful for quickly figuring out a tip, a 20%-off sale price, a sales-tax line, a 5% commission, what your 8% pay raise becomes in absolute money, what 25% of a budget means in real currency, or any of the dozen mental-arithmetic tasks that benefit from a fast accurate widget. Pairs with the tip-calculator, discount-calculator, and tax-calculator for the full "how much will I actually pay" workflow.

About this tool

The math is the standard percentage definition: percent_value = (percentage ÷ 100) × base. So 15% of 80 = 0.15 × 80 = 12. The formula display is verbatim — no rounding shenanigans, no hidden decimals — so you can verify the calculation by hand. The quick buttons cover the most common contexts: 5/10/15/20% for restaurant tipping (US/UK custom varies), 25% for trip-saving "75% off" reframing (75% off = paying 25%), 50% for half-price. Inputs accept decimals (e.g. 8.5% sales tax, 12.75% commission split) and negative numbers (negative percentages or negative bases produce mathematically consistent results that some users may want to flip; the result preserves sign). Common reference cases: 15% tip on $80 dinner = $12 ($92 total), 20% off $50 jacket = $10 saved ($40 final), 8.5% sales tax on $20 = $1.70 ($21.70 total), 6% commission on $1,000 sale = $60, 5% raise on $4,500/month salary = $225 increase ($4,725 new). Reactive, runs entirely client-side, no upload of your numbers.

  • Standard percentage formula: (% ÷ 100) × base
  • Quick-tap presets at 5/10/15/20/25/50%
  • Step-by-step formula breakdown shown under the result
  • Reactive — recalcs as you change either input
  • Decimal inputs supported (8.5% sales tax, 12.75% commissions)
  • Negative inputs handled with mathematically consistent signs
  • Copy result with one click
  • No upload — your numbers stay in your browser
  • Useful for tips, discounts, sales tax, commissions, salary raises
  • Pairs with tip-calculator, discount-calculator, tax-calculator for full flow

Free. No signup. Your inputs stay in your browser. Ads via Google AdSense (consent required).

Frequently asked questions

What's the formula for "X% of Y" and what's the inverse?

The formula is `result = (X / 100) × Y`, where X is the percentage and Y is the base. Worked example: 25% of 80 = (25/100) × 80 = 0.25 × 80 = 20. The inverse — finding what percent A is of B — uses `percent = (A / B) × 100`. Worked example: 20 is what percent of 80 → (20/80) × 100 = 25%. Both formulas derive from the ISO 80000-1:2022 definition of percentage as the dimensionless ratio 0.01 (so "1%" literally means 0.01); the BIPM SI Brochure 9th edition (2019) permits the % symbol alongside SI units. The two forms are inverses of each other: knowing the percent + base gives the part; knowing the part + base gives the percent.

How do I calculate stacked discounts (30% off + 20% extra)?

Stacked discounts compose multiplicatively, not additively. A 30% discount followed by an additional 20% off the discounted price = original × 0.70 × 0.80 = original × 0.56, equivalent to 44% off, NOT 50% off. The intuition: each percentage applies to the running price, not the original. Common retail patterns: "40% off + extra 20% with code" → 0.60 × 0.80 = 0.48 = 52% effective off; "50% off + extra 30% clearance" → 0.50 × 0.70 = 0.35 = 65% effective off. The FTC Guides Against Deceptive Pricing (16 CFR Part 233, enforced under FTC Act § 5) require retailers to disclose stacking math accurately when the cumulative claim could mislead. To compute the effective rate from N stacked discounts, multiply (1 − rate_i) for each, then subtract from 1.

What's the difference between a "percentage-point" and a "percent"?

A percentage-point is an absolute difference between two percentages; a percent is a relative difference. If an interest rate moves from 5% to 6%, that's an increase of 1 percentage point (absolute) but a 20% relative increase (1 / 5 × 100). Financial reporting often confuses the two — a Fed rate cut from 5.50% to 5.25% is "25 basis points" or "0.25 percentage points" (absolute), NOT "0.25%" (which would be a tiny relative cut). Bank for International Settlements (BIS) reporting standards use basis points (1 bp = 1/100 of 1% = 0.01%) for sub-percent moves to avoid this confusion. Quick rule: when comparing two percentages directly, use percentage-points (or basis points); when expressing one number as a fraction of another, use percent.

Why do tip / sales tax / VAT all use percentages?

Percentages scale proportionally with the bill, which matches how these charges are conceptually justified: tips proportional to service value (US convention 15-20% pre-tax, UK service charge 12.5-15% often included on the bill (12.5% historical, drifting to 15% in London restaurants 2025-2026), EU varies by country with optional rounding), sales tax / VAT proportional to the taxable value (EU VAT: Spain 21%, Germany 19%, UK 20%, Norway 25%; US sales tax state-by-state 0% Oregon to ~10% with local add-ons), commissions proportional to deal size (real estate 5-6% in US, 1-3% in EU). The percentage-of-base computation is identical across these contexts; only the conventional rate and pre-tax-vs-post-tax base differ. Always check whether tip is computed on the pre-tax or post-tax total in your jurisdiction.

How does the calculator handle decimals and negatives?

Decimals are accepted in both the percentage and the base inputs — useful for sales tax rates that aren't whole numbers (8.5% California, 7.25% baseline), commission splits (12.75% on a deal), or precision financial numbers. The calculation uses IEEE-754 double-precision floats (the JavaScript Number type), which gives 15-17 significant decimals — well beyond any practical financial or measurement precision. Negative inputs are mathematically valid: a negative percentage (e.g. -10%) returns a negative fraction of the base; a negative base returns a negative result. Sign is preserved consistently. The display rounds to a configurable number of decimal places for readability, but the underlying calculation retains full precision so that round-tripping the result through the calculator returns the same value.

Sources (5)
  • International Organization for Standardization (2022). ISO 80000-1:2022 — Quantities and units, Part 1: General; defines percentage (%) as the dimensionless ratio 0.01 (1% = 1/100 = 0.01 exact). ISO Technical Committee 12 (TC 12 — Quantities and units); ISO 80000-1:2022 supersedes ISO 80000-1:2009 which had superseded ISO 31-0.
  • Bureau International des Poids et Mesures (BIPM) (2019). The International System of Units (SI), 9th edition (2019; online supplement updated through 2024) — permits the use of the percent symbol (%) alongside SI units as a numeric ratio multiplier (1% = 0.01); the per mille symbol (‰ = 0.001) is similarly permitted. Bureau International des Poids et Mesures, Sèvres; SI Brochure 9th edition published May 2019, effective 20 May 2019 with the SI redefinition via fundamental constants.
  • Bank for International Settlements (BIS) (2017). Basis point convention in financial reporting — 1 basis point (bp) = 1/100 of 1% = 0.01% = 0.0001 in fractional form. Standard sub-percent quotation unit for central-bank rate moves (ECB +25 bp = +0.25%), bond yields (10y Treasury 4.50% ± 5 bp), interest-rate swaps, and credit spreads. Rooted in the BIS Quarterly Review and Basel Committee on Banking Supervision (BCBS) reporting conventions. Bank for International Settlements, Basel; convention codified in BIS Quarterly Review + BCBS reporting standards (Basel I/II/III/IV); financial industry usage since the 1970s.
  • U.S. Federal Trade Commission (FTC) (2023). FTC Act § 5 (15 U.S.C. § 45) and FTC Guides Against Deceptive Pricing (16 CFR Part 233) — prohibition of unfair or deceptive practices in retail pricing; "% off" claims must reference an actual "regular price" previously charged in the recent past, not a fictitious or inflated MSRP. The FTC Picture Tube Rule (16 CFR Part 410, 1966) was repealed October 2018 but FTC Act § 5 continues to apply to discount framing. U.S. Federal Trade Commission; California Business and Professions Code § 17501 strengthens the rule at state level; EU Price Indication Directive 98/6/EC (Article 6a, added by Omnibus Directive 2019/2161) requires disclosure of the lowest price applied during the 30 days before the discount.
  • World Wide Web Consortium (W3C) (2018). Web Content Accessibility Guidelines (WCAG) 2.1 — Success Criterion 4.1.3 Status Messages. W3C Recommendation 5 June 2018; carried unchanged into WCAG 2.2 (Recommendation 5 October 2023).

These are the original publications the formulas in this tool are based on. Locate them by journal name and year on Google Scholar or PubMed.

By ·