← Untitled

How to Use Our Percentage Calculator (and Why Three Modes Are Enough)

Reviewed by the FreeOnline.fyi team · Updated 2026-09-09

When we first sketched the percentage calculator that now lives at [freeonline.f

When we first sketched the percentage calculator that now lives at freeonline.fyi, we kept coming back to one observation: percentage math is everywhere, yet most online tools treat it as a side feature buried inside a kitchen-sink app. We wanted the opposite — a single screen, three modes, two inputs, and an answer that updates before your finger leaves the keyboard. The result is the percentage calculator, and it does three things very well.

The math behind percentages is older than the calculator itself. As Wikipedia's entry on percentages notes, the concept traces back to Roman tax law ("per centum"), but the three problems most people actually solve today haven't changed in centuries: finding a part of a whole, finding what fraction one number is of another, and finding the change between two numbers. Those are exactly the three modes we shipped.

Open the tool and you'll see a row of tabs at the top.

Open the tool and you'll see a row of tabs at the top. The default is "X% of Y," because that's the one most people reach for first. If you want to know how much you'll save on a 4,900 DA jacket marked down 25%, type 25 into the percent field and 4900 into the value field. The result — 1,225 DA — appears in the result panel below, formatted with locale-aware thousands separators. We tested this with dozens of common discount scenarios, and the answer updates in well under a hundred milliseconds on a mid-range Android phone.

The second mode, "X is what % of Y," handles the inverse question. Say you scored 47 out of 60 on an exam and want to know your grade. Type 47 as value A and 60 as value B, switch to the second tab, and you'll see 78.33% — assuming you left precision at 2 decimal places. The third mode, "Percent change," is the one many calculators get wrong because they conflate increase and decrease. Our version uses the standard formula (new − old) / old × 100, which yields a negative number for decreases and a positive one for increases. The sign carries information; please don't strip it.

Using the tool is intentionally short.

Using the tool is intentionally short. Open the percentage calculator on your phone, pick the mode that matches your question from the chip row at the top, then type the percent or the first number into the first input — the field with "%" as its unit hint. Type the second number into the input below it and watch the result panel fill in. Tap the copy icon next to the result if you need to paste it into a message or note; we added a small toast confirmation so you know the value actually reached your clipboard.

Precision is adjustable from 0 to 6 decimal places and lives just below the inputs. Leave it at 2 for shopping and grades; bump it to 4 or 6 when you're working on currency conversions or markup math where rounding errors compound. The mode you picked also persists in the URL, so you can bookmark or share a link that lands directly on, say, the percent-change tab with your last values already loaded. Small details like that are what make a single-purpose tool feel like a real utility.

A few things can trip you up, and we'd rather warn you now than watch you wonder

A few things can trip you up, and we'd rather warn you now than watch you wonder. First, the value fields are restricted to non-negative numbers up to one billion — we picked that ceiling because anything larger is almost certainly an input error. Second, in "X is what % of Y," if you set value B to zero, the result will read "undefined" rather than crash or silently return zero. That's deliberate: division by zero is not infinity, and pretending otherwise has burned countless spreadsheets. Third, the percent-change mode always assumes you want the change from value A to value B; if the answer looks backward, swap your inputs.

We chose to make the tool mobile-first for a reason we keep seeing in our analytics: most visits to FreeOnline.fyi's math tools come from phones, often on shaky connections in cafés, taxis, and classrooms. The result panel is sticky at the bottom of the viewport so it stays visible even when the on-screen keyboard pushes the page up. Inputs use inputmode="decimal" to summon the numeric keypad, and there are no ads, no signup, and no clutter — the page works fully offline after your first visit. If your needs are simpler — say, splitting a restaurant bill — we also have a dedicated tip calculator that handles gratuity math across different party sizes.

For readers who want the formal definitions of "percent," "percentage point," an

For readers who want the formal definitions of "percent," "percentage point," and "basis point," the Encyclopaedia Britannica entry on percentage is a solid starting point and clarifies distinctions that often get muddled in casual writing. As always, double-check any number that affects money, grades, or legal documents — the tool is fast, but you're the one signing the receipt.

References