WikiPlus

Prozentrechner

Kostenloser Online-Prozentrechner. Ermitteln Sie X % einer Zahl, berechnen Sie, wie viel Prozent eine Zahl von einer anderen ausmacht, und bestimmen Sie prozentuale Veränderung, Zunahme oder Abnahme. Schnell, privat, mobiloptimiert.

Lokale Verarbeitung
1.4s Ø
4.8 von 5 — basierend auf 1,247 Nutzungen

Von Sergio Robles — Gründer

Ergebnis = (A / 100) × B
Ergebnis
12
Prozentbeispiele aus dem Alltag
  • 20 % Trinkgeld auf eine Restaurantrechnung von 75 $ → 15 $ Trinkgeld
  • 35 % Rabatt auf eine Jacke für 120 $ berechnen → 42 $ Nachlass, 78 $ Endpreis
  • 8,75 % Umsatzsteuer auf ein Notebook für 499 $ anwenden → 43,66 $
  • 42 von 50 Punkten in einem Test erreicht → 84 %
Ihre Dateien werden lokal in Ihrem Browser verarbeitet. Wir laden Ihre Daten nie hoch und speichern sie nicht.

Was ist Prozentrechner?

Der Prozentrechner beantwortet die drei Prozentfragen, die im Alltag tatsächlich auftauchen. Erstens: Was sind X % einer Zahl — nützlich für Trinkgelder, Rabatte, Umsatzsteuer, Provisionen und schnelle Überschlagsrechnungen. Zweitens: X ist wie viel Prozent von Y — nützlich für Schulnoten, Umfrageergebnisse, Fortschrittsbalken, Sparquoten und Portfolio-Allokationen. Drittens: prozentuale Veränderung von einem Wert zum anderen — nützlich für Preisanstiege, Gehaltserhöhungen, Gewichtsabnahme-Fortschritte, Kapitalrenditen und Jahresvergleiche. Alles läuft direkt in Ihrem Browser mit simpler JavaScript-Arithmetik. Es gibt keine Server-Roundtrips, keine Anmelde-Hürden und keine versteckten Zeichenlimits. Antworten erscheinen sofort beim Tippen. Wechseln Sie den Modus mit einem Klick und dieselben zwei Felder werden an die neue Formel gebunden, sodass Sie nie überlegen müssen, welche Zahl wohin gehört. Der Rechner arbeitet standardmäßig mit vier Nachkommastellen Präzision — genug für Finanzen, Hausaufgaben im Ingenieurwesen und exakte Steuerberechnungen ohne wissenschaftliche Notation.

Wann sollte ich dieses Werkzeug nutzen?

  • Schnelle Trinkgeldberechnung im Restaurant: 18 %, 20 % oder 22 % vom Zwischenbetrag ermitteln, bevor die Rechnung aufgeteilt wird.
  • Rabattprüfung beim Einkaufen: sicherstellen, dass ein Banner mit 'heute 30 % sparen' wirklich einen Nachlass von 30 % bedeutet und nicht nur Marketing-Geschwätz ist.
  • Umrechnung von Schulnoten: rohe Punktzahlen in Prozent umwandeln, um sie mit der Notenskala im Lehrplan zu vergleichen.
  • Beurteilung einer Gehaltserhöhung: ein neues Angebot mit dem aktuellen Gehalt vergleichen, um die tatsächliche prozentuale Steigerung vor der Verhandlung zu kennen.

Wie berechne ich Prozente schnell online?

  1. 1Wählen Sie den Modus, der zu Ihrer Frage passt: Prozent einer Zahl, X ist wie viel Prozent von Y oder prozentuale Veränderung.
  2. 2Tragen Sie die beiden Zahlen in die beschrifteten Felder ein — der Beschriftungstext passt sich automatisch dem gewählten Modus an, damit nichts verwechselt wird.
  3. 3Lesen Sie das Ergebnis sofort ab; es wird bei jedem Tastendruck neu berechnet, ohne dass ein Button gedrückt werden muss.
  4. 4Bei der prozentualen Veränderung zeigt der Hinweis Zunahme/Abnahme unter dem Ergebnis die Richtung der Veränderung an.
  5. 5Kopieren Sie die Zahl manuell oder schreiben Sie sie auf — nach dem Verlassen der Seite wird nichts gespeichert, verfolgt oder hochgeladen.

Häufig gestellte Fragen

Warum weichen meine Ergebnisse leicht von einer Tabellenkalkulation ab?

Small discrepancies between this calculator and a spreadsheet almost always come down to floating-point representation and intermediate rounding. Both this tool and spreadsheet applications like Excel and Google Sheets use 64-bit IEEE 754 double-precision floating-point arithmetic, which cannot exactly represent most decimal fractions in binary. For example, 0.1 in binary is a repeating fraction 0.0001100110011… that gets truncated at the 52nd significand bit. When you chain multiple operations together — say, finding a percentage of a number and then applying a further percentage change — these small truncation errors compound. Spreadsheets typically display results rounded to a visible decimal place, hiding the floating-point noise, while a calculator that shows more decimal places will expose it. Another source of difference is intermediate rounding: Excel may round an intermediate result to 15 significant digits before passing it to the next formula cell, while a single-expression JavaScript calculation carries the full floating-point value throughout. For financial work where exact decimal arithmetic is required, neither tool is appropriate without specific precautions — dedicated accounting software uses fixed-point or decimal arithmetic libraries to avoid these issues entirely. This tool runs entirely in your browser — no data leaves your device. Practical tip: if you need results that exactly match a spreadsheet, set both tools to display the same number of decimal places and apply rounding at the same step — differences that remain after that are true floating-point divergence and are negligible for any practical non-financial use case.

Was ist der Unterschied zwischen prozentualer Veränderung und prozentualer Differenz?

Percent change and percent difference are distinct calculations that answer different questions, and confusing them leads to reporting errors. Percent change measures how much a value has moved from a specific starting point to an ending point, expressed as a proportion of the original value. The formula is ((new − old) / old) × 100. It is directional: a price rising from 80 to 100 is a +25% change, while falling from 100 to 80 is a −20% change. This asymmetry is intentional because the reference (denominator) is always the original value. Percent difference, by contrast, measures the relative gap between two values when neither is designated the reference. It is symmetric and typically used when comparing two independent measurements of the same quantity. The standard formula is (|A − B| / ((A + B) / 2)) × 100, where the denominator is the average of the two values. Using this formula, the difference between 80 and 100 is the same as the difference between 100 and 80: approximately 22.2%. Use percent change when tracking a value over time (stock prices, revenue growth, weight loss) and percent difference when comparing two measurements without a natural baseline (lab duplicate samples, competing products). This calculator runs entirely in your browser — no data leaves your device. Practical tip: always state which formula you used when sharing percentage figures in a report — percent change and percent difference on the same two numbers can differ by several percentage points, and the choice significantly affects how readers interpret the magnitude of a gap.

Kann ich das für Zinseszinsen oder Hypothekenzahlungen verwenden?

This percentage calculator handles basic percentage operations — finding what percent one number is of another, calculating percent change, applying a percentage increase or decrease, and similar single-step calculations. It is not designed for compound interest or mortgage amortization, which require multi-period financial formulas. Compound interest is calculated using the formula A = P(1 + r/n)^(nt), where P is the principal, r is the annual interest rate, n is the number of compounding periods per year, and t is the time in years. Mortgage payment calculations use the loan amortization formula M = P[r(1+r)^n] / [(1+r)^n − 1], where M is the monthly payment, P is the loan principal, r is the monthly interest rate, and n is the total number of monthly payments. Both of these involve repeated exponentiation and iterative schedules that go beyond single-percentage operations. For those calculations, WikiPlus offers dedicated financial tools — or you can use a spreadsheet with PMT and FV functions, which are purpose-built for these scenarios. That said, you can use this tool to calculate the effective monthly rate from an annual rate (divide by 12), to find what percentage of a monthly payment goes to interest (interest paid / payment amount × 100), or to compare percentage-based fees. Everything runs in your browser — no data leaves your device. Practical tip: for quick compound interest estimates, remember the Rule of 72 — divide 72 by the annual interest rate to get the approximate number of years for an investment to double, which is handy for rapid mental calculations.

Werden diese Daten an einen Server gesendet?

No — none of your input data is sent to a server at any point. Every calculation this tool performs runs entirely in your browser using JavaScript arithmetic executed locally. When you type numbers into the input fields and select a calculation type, the result is computed by JavaScript running in your browser's V8 or SpiderMonkey engine on your own device, with no network request to any WikiPlus server or third-party service. You can confirm this at any time by opening your browser's developer tools, clicking the Network tab, clearing the request list, and then performing several calculations — you will observe zero outbound network requests generated by the tool itself. This client-side architecture means the tool works equally well offline: once the page has loaded, you can disconnect from the internet and all percentage calculations will continue to function normally. WikiPlus does not collect, log, or analyze the values you enter into any of its calculator tools. There is no server-side computation, no analytics event that captures input fields, and no telemetry tied to calculation results. The only network activity involved is the initial page load that delivers the HTML, CSS, and JavaScript to your browser — after that, everything is local. Practical tip: if you are working with sensitive financial figures such as salary details, loan amounts, or business revenue, this local processing model means you can use the tool safely on confidential data without concern about those numbers being transmitted or stored anywhere.

Der Inhalt dieser Seite ist unter CC BY 4.0 verfügbar.