Calculate X% of Y, what percent one number is of another, and percent increase or decrease. Results update live as you type — all math stays in your browser.
Technical Specifications
How each calculation is performed and the limits that apply.
| Specification |
Details |
| Modes |
X% of Y, X is what % of Y, Percent change (increase / decrease) |
| Formulas |
X% of Y = Y × X / 100 · What percent = X ÷ Y × 100 · Change = (New − Original) ÷ Original × 100 |
| Input range |
Any finite number; decimals and negatives accepted; comma separators ignored; max ±1e15 with live formatting |
| Precision |
Double-precision (IEEE 754); display rounded to max 10 decimals with trailing zeros trimmed |
| Update mode |
Live on input, no submit button needed; debounced for keyboard responsiveness under 16 ms |
| Processing location |
100% client-side JavaScript in your browser memory; nothing is uploaded |
| Export |
Copy result to clipboard or download a plain-text report with inputs, formula and timestamp |
| Usage limit |
None — run unlimited calculations for free, no signup required |
Understanding Percentages in Everyday Math
Percentages scale any quantity to a 0-to-100 base, so 25% always means a quarter, whether of a price, a test score, or a population. That common denominator is why discounts, interest rates, tax, grade curves, and tip calculations all rely on the same arithmetic: divide the part by the whole and multiply by 100.
X percent of Y
This is the most frequent pattern: a retailer takes 30% off a $200 jacket, a student earns 82% of 75 marks, or a bank charges 7.5% on a balance. Multiplying the base by the rate over 100 yields the share. Our calculator shows both the numeric answer and the sentence form, for example 15% of 200 = 30, which leaves 170 remaining. For cost-based analysis see the Discount Calculator and the Profit Margin Calculator.
What percent is X of Y
Reversing the question answers ratio and proportion checks: 30 correct answers out of 40 is 75%, and $45 saved on a $300 purchase is a 15% saving. Dividing the part by the whole converts the fraction to a percent, which makes it easy to compare performances across different totals without extra conversion.
Percent increase, decrease, and difference
Changing values require a base. Moving from 200 to 230 is a gain of 30 on 200, which is 15% increase, while returning from 230 to 200 is a 13.04% decrease because the base changed. Percent change divides the absolute difference by the original value, preserving direction. Percent difference, by contrast, divides by the average of both numbers and is always positive — useful when neither value is a clear starting point.
Honest limitations
Percentages describe relative relationships, not absolute amounts. A 50% increase on 2 and on 2,000 both show 50%, yet the absolute gains differ by a factor of 1,000. Very small bases also magnify noise: going from 1 to 2 is 100% growth but only one unit. Use the absolute difference shown alongside the percent to judge practical impact.
Privacy and Client-Side Security
Privacy Guarantee: All calculations occur locally inside your browser. Your numbers are never transmitted, stored, or recorded on remote servers.
Many online calculators send your inputs to a server for processing, which is unnecessary for basic math. TinyToolzz keeps everything in-page: parsing, rounding, and formatting run with plain JavaScript number operations.
Because nothing is uploaded, there is no waiting, no account, and no copy of your figures retained anywhere. Your values exist only in the tab's memory and are discarded when you close the page or click Clear.