📐 Math

German Solidaritätszuschlag Calculator 2025

Free calculator to instantly compute your German Solidarity Surcharge. Enter taxable income and tax amount for precise results.

⚡ Free to use 📱 Mobile friendly 🕒 Updated: June 21, 2026
🧮 German Solidaritätszuschlag Calculator
function calculate() { const income = parseFloat(document.getElementById("i1").value) || 0; const taxClass = parseInt(document.getElementById("i2").value); const churchTaxRate = parseInt(document.getElementById("i3").value); const year = parseInt(document.getElementById("i4").value); // Freibetrag (allowance) for Solidaritätszuschlag let soliFreibetrag = 18130; // 2024/2025 base for single if (taxClass === 3) soliFreibetrag = 36260; if (taxClass === 5) soliFreibetrag = 18130; // Simplified income tax estimation based on German tax brackets (2024/2025) let einkommensteuer = 0; let taxableIncome = income; // Basic tax calculation (simplified) if (taxableIncome <= 11604) { einkommensteuer = 0; } else if (taxableIncome <= 17005) { einkommensteuer = (taxableIncome - 11604) * 0.14; } else if (taxableIncome <= 66760) { let y = (taxableIncome - 17005) / 10000; einkommensteuer = (taxableIncome - 11604) * 0.2397 + 170.76 * y + 948.68; } else if (taxableIncome <= 277825) { einkommensteuer = taxableIncome * 0.42 - 10602.13; } else { einkommensteuer = taxableIncome * 0.45 - 18354.13; } // Adjust for tax class (simplified multipliers) const classFactors = {1:1.0, 2:0.95, 3:0.8, 4:1.0, 5:1.2, 6:1.3}; einkommensteuer *= classFactors[taxClass] || 1.0; einkommensteuer = Math.max(0, Math.round(einkommensteuer)); // Solidaritätszuschlag calculation let soliBase = einkommensteuer; let soli = 0; let soliRate = 0.055; // 5.5% // Check if income exceeds allowance if (income > soliFreibetrag) { soli = Math.round(soliBase * soliRate); // Since 2021: 90% of taxpayers are exempt, only top earners pay // Simplified: apply only if income > ~73000 (single) / ~146000 (married) let exemptionThreshold = taxClass === 3 ? 146000 : 73000; if (income < exemptionThreshold) { soli = 0; } } // Church tax surcharge on soli let churchSurcharge = 0; if (churchTaxRate > 0 && soli > 0) { churchSurcharge = Math.round(soli * (churchTaxRate / 100)); } let totalSoli = soli + churchSurcharge; // Color coding let colorClass = "green"; if (totalSoli > 2000) colorClass = "red"; else if (totalSoli > 500) colorClass = "yellow"; // Primary result let primaryLabel = "Solidaritätszuschlag (Annual)"; let primaryValue = "€" + totalSoli.toLocaleString("de-DE"); let primarySub = ""; if (totalSoli === 0) { primarySub = "✅ Exempt – below income threshold"; colorClass = "green"; } else if (income < soliFreibetrag) { primarySub = "✅ Under allowance (€" + soliFreibetrag.toLocaleString("de-DE") + ")"; } else { primarySub = "Based on income tax of €" + einkommensteuer.toLocaleString("de-DE"); } // Result grid items let gridItems = [ {label: "Taxable Income", value: "€" + income.toLocaleString("de-DE"), cls: ""}, {label: "Income Tax (est.)", value: "€" + einkommensteuer.toLocaleString("de-DE"), cls: ""}, {label: "Soli Rate", value: "5.5%", cls: ""}, {label: "Church Surcharge", value: "€" + churchSurcharge.toLocaleString("de-DE"), cls: churchSurcharge > 0 ? "yellow" : "green"}, {label: "Total Surcharge", value: "€" + totalSoli.toLocaleString("de-DE"), cls: colorClass}, {label: "Year", value: year.toString(), cls: ""} ]; // Breakdown table let breakdownHTML = ` <
📊 Solidaritätszuschlag Amount by Taxable Income Bracket (2024)

What is German Solidaritätszuschlag Calculator?

A German Solidaritätszuschlag calculator is a specialized financial tool designed to compute the Solidarity Surcharge, a tax levied on top of income tax in Germany. Known colloquially as "Soli," this surcharge was originally introduced in 1991 to fund the reconstruction of eastern Germany after reunification, and despite significant reductions in recent years, it still applies to high-income earners and certain corporate entities. This free online calculator automates the complex assessment of whether you owe the 5.5% surcharge on your income tax liability, factoring in the current exemption thresholds and phase-in rules established by the 2021 reform.

Employees, freelancers, and small business owners use this tool to verify payroll deductions, plan tax provisions, or estimate their net income accurately. For expatriates and international contractors working in Germany, understanding the Solidaritätszuschlag is critical for budgeting and compliance, as miscalculations can lead to unexpected tax bills or missed savings. The calculator eliminates manual errors by applying the latest legal parameters, including the Freigrenze (exemption limit) and the Gleitzone (transition zone), where the surcharge gradually increases.

This free online calculator provides instant, accurate results with a full step-by-step breakdown, requiring no registration or personal data. It is designed for anyone from tax professionals running quick checks to individuals who want to understand their exact Soli obligation without navigating dense German tax codes.

How to Use This German Solidaritätszuschlag Calculator

Using this German Solidaritätszuschlag calculator is straightforward and takes less than a minute. Simply input your annual income tax liability (the amount of income tax you owe for the year) and your filing status, and the tool will instantly compute whether you owe the surcharge and exactly how much. Follow these five steps for accurate results.

  1. Enter Your Annual Income Tax Liability: Locate the field labeled "Income Tax Amount (€)" and type in the total income tax you expect to pay for the current tax year. This number is typically found on your Lohnsteuerbescheinigung (wage tax certificate) or your annual tax return (Einkommensteuererklärung). For example, if your tax return shows €12,000 in income tax, enter "12000".
  2. Select Your Filing Status: Choose your correct filing category from the dropdown menu. Options include "Single" for individuals filing alone, "Married Filing Jointly" for couples whose combined income is assessed together, and "Married Filing Separately" for spouses who opt for individual assessment. Your filing status directly affects the exemption threshold—married couples filing jointly have a doubled Freigrenze.
  3. Specify the Tax Year (Optional but Recommended): If the calculator offers a year selector, choose the relevant tax year (e.g., 2025 or 2026). The Solidaritätszuschlag rules have changed over time, and using the correct year ensures the tool applies the right exemption amounts and phase-in percentages. For current use, the default is typically the latest year with confirmed rates.
  4. Click "Calculate" to Get Results: Press the prominent "Calculate Soli" button. The tool will process your inputs instantly, displaying the calculated Solidaritätszuschlag amount, the effective surcharge rate applied, and a clear indication of whether you fall into the exemption, transition, or full-payment zone.
  5. Review the Detailed Breakdown: After calculation, examine the step-by-step explanation provided below the result. This section shows the exact math: your income tax amount, the applicable exemption threshold, any phase-in reduction, and the final surcharge. Use this breakdown to verify the logic or to adjust your inputs for "what-if" scenarios, such as how additional income might affect your Soli obligation.

For best accuracy, ensure your income tax liability figure is net of any deductions or credits already applied. If you are unsure of your exact tax liability, consult your latest payslip (which shows Lohnsteuer) or a tax advisor. The calculator is designed to handle both positive and zero tax liabilities—if your income tax is zero, the Solidaritätszuschlag will also be zero.

Formula and Calculation Method

The German Solidaritätszuschlag is calculated as 5.5% of the assessed income tax liability, but only after applying a complex exemption and phase-in mechanism. The formula ensures that low and middle-income earners pay no Soli, while high earners pay the full surcharge. The calculation follows a three-step logic: determine the exemption threshold, check if you fall into the transition zone, and then apply the appropriate rate.

Formula
Soli = max( 0, ( IncomeTax × 0.055 ) - Reduction )
Where Reduction = min( PhaseInFactor × ( IncomeTax - Freigrenze ), IncomeTax × 0.055 )

This formula essentially states that the Solidaritätszuschlag equals 5.5% of your income tax minus a reduction that gradually phases in the full rate. The reduction only applies when your income tax exceeds the Freigrenze (exemption threshold) but is less than the upper limit of the Gleitzone (transition zone). For income tax below the Freigrenze, the Soli is zero. For income tax above the transition zone, the reduction is zero, and you pay the full 5.5%.

Understanding the Variables

The variables in the formula represent specific values defined by German tax law. IncomeTax is your total annual income tax liability in euros, as determined by your tax return or wage tax deduction. Freigrenze is the exemption threshold—for single filers in 2025, this is €18,130; for married couples filing jointly, it is €36,260. PhaseInFactor is a coefficient that determines how quickly the surcharge increases from 0% to 5.5% as income tax rises above the Freigrenze. For single filers, this factor is approximately 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Frequently Asked Questions

The German Solidaritätszuschlag Calculator is a specialized online tool that calculates the Solidarity Surcharge (Soli) owed on German income tax. It measures the additional 5.5% tax levied on the assessed income tax (Einkommensteuer) for individuals and corporations. Specifically, it determines whether you fall under the full exemption threshold (for single earners: €18,130 annually as of 2025) or the partial exemption phase-in zone, outputting the exact surcharge amount due.

The calculator uses the formula: Soli = 5.5% × (Einkommensteuer - Freigrenze), but only if the income tax exceeds the exemption threshold. For 2025, the Freigrenze for single filers is €18,130, with a sliding phase-in zone between €18,130 and €35,089. If the income tax is below the threshold, Soli = €0; if within the phase-in, Soli = 5.5% × (Einkommensteuer - (0.8 × (Einkommensteuer - Freigrenze))); and above the phase-in, Soli = 5.5% × Einkommensteuer.

A "healthy" or normal result is a Soli of €0, meaning your income tax is below the exemption threshold (e.g., single earners under €18,130 in taxable income). For most middle-income earners (e.g., €40,000–€60,000 taxable income), the Soli typically ranges from €200 to €800 annually. High earners above the phase-in zone (taxable income over ~€35,089 for singles) will see the full 5.5% surcharge, which can exceed €2,000 for incomes over €100,000.

When fed with correct taxable income and tax data, this calculator is mathematically exact to the cent, as it applies the statutory 5.5% rate and precise phase-in formulas from §3 SolZG. However, its accuracy depends entirely on the user inputting the correct Einkommensteuer amount from their tax assessment. If you input gross income instead of the final tax liability, the result will be inaccurate. For 99% of users with precise inputs, it matches the Finanzamt's calculation exactly.

The calculator cannot account for special tax deductions, losses carried forward, or child tax credits that reduce your actual Einkommensteuer, which in turn lowers the Soli base. It also assumes a single filing status by default—married couples filing jointly (Splittingtarif) have double the exemption thresholds (€36,260 in 2025), which the user must manually adjust. Additionally, it does not handle the Soli for capital gains tax (Abgeltungsteuer), which is calculated separately by banks.

This calculator provides the same mathematical result as professional software for the Soli component, but only if you already know your exact Einkommensteuer. In contrast, programs like WISO Tax or Elster automatically compute your income tax from all deductions, then apply the Soli formula. The calculator is faster for a quick check, but lacks the comprehensive tax return logic. For a full tax estimate, professional software is more reliable because it handles the underlying income tax calculation.

No, this is a common misconception. While the Soli was partially abolished in 2021 for about 90% of taxpayers (those below the exemption thresholds), it still applies to high-income earners and corporations. For example, a single person earning €80,000 in taxable income still pays the full 5.5% surcharge—approximately €1,200 annually. The calculator clearly shows whether you are exempt or liable, debunking the myth that the tax no longer exists for anyone.

A freelance graphic designer earning €55,000 net profit in 2025 can use the calculator to estimate their quarterly tax prepayments. By inputting their expected Einkommensteuer (roughly €12,000), the calculator shows a Soli of €660 annually, or €165 per quarter. This helps them budget for the surcharge alongside income tax, avoiding underpayment penalties. The calculator also lets them test scenarios, such as deducting a new €2,000 laptop, to see how it lowers both income tax and Soli.

Last updated: June 21, 2026 · Bookmark this page for quick access

🔗 You May Also Like

German Lohnsteuer Calculator
Free German Lohnsteuer calculator to estimate your wage tax instantly. Enter inc
Math
German Steuer Calculator English
Free German Steuer calculator in English to estimate your income tax instantly.
Math
German Kirchensteuer Calculator
Free German Kirchensteuer calculator to instantly compute your church tax amount
Math
German Mwst Calculator
Free German Mwst calculator to add or remove 19% and 7% VAT instantly. Enter any
Math
Denmark Moms Calculator English
Free Denmark Moms calculator in English to estimate your monthly maintenance pay
Math
Relative Extrema Calculator
Find local maxima & minima for any function with this free Relative Extrema Calc
Math
Route 53 Pricing Calculator
Free Route 53 pricing calculator to estimate hosted zones, queries, and health c
Math
Super Contribution Calculator Australia
Free super contribution calculator for Australia. Easily calculate your optimal
Math
Minecraft Fortune Calculator
Free Minecraft Fortune calculator to instantly check your expected drops. Enter
Math
Uta Gpa Calculator
Free Uta GPA Calculator. Quickly compute your cumulative or semester GPA. Plan g
Math
Shared Ownership Calculator Uk
Free Shared Ownership Calculator UK to estimate your monthly rent, mortgage, and
Math
Mapei Grout Calculator
Free Mapei grout calculator. Easily estimate the exact amount of grout needed fo
Math
Area Of A Sector Calculator
Free area of a sector calculator to compute sector area instantly. Enter radius
Math
Lease Calculator Uk
Free UK lease calculator to estimate monthly payments instantly. Enter vehicle v
Math
Unl Gpa Calculator
Free unweighted GPA calculator to compute your semester or cumulative average in
Math
Cape Town Cost Of Living Calculator
Free Cape Town cost of living calculator to estimate monthly expenses instantly.
Math
Psat Calculator
Use our free PSAT calculator to estimate your selection index score instantly. E
Math
Fraction Calculator
Free online fraction calculator for adding, subtracting, multiplying, and dividi
Math
Houston Cost Of Living Calculator
Free Houston cost of living calculator to compare rent, utilities, and food cost
Math
Pokemon Max Raid Calculator
Free pokemon max raid calculator — instant accurate results with step-by-step br
Math
Herblore Calculator
Free Herblore calculator for OSRS to plan potion making and leveling. Instantly
Math
Estate Agent Fees Calculator Uk
Calculate total estate agent fees in the UK for free. Compare fixed fees and per
Math
Ramp Calculator
Free ramp calculator for wheelchair, scooter, or loading ramps. Instantly find r
Math
Net Pay Calculator Uk
Free UK net pay calculator to instantly estimate your take-home salary after tax
Math
Do You Get A Calculator On The Asvab
Free guide: no calculators are allowed on the ASVAB. Learn how to ace the math s
Math
League Of Legends Baron Calculator
Free League of Legends Baron calculator to determine optimal Nashor kill timing.
Math
Pokemon Go Gym Calculator
Free Pokemon Go Gym calculator to find the best counters for any raid boss. Ente
Math
Dilution Ratio Calculator
Calculate precise dilution ratios instantly with this free tool. Simplify mixing
Math
Uk Minimum Wage Calculator
Free UK minimum wage calculator for 2025-26 rates. Instantly check your correct
Math
Cgt Calculator Uk
Free CGT calculator for UK residents to estimate tax on property and shares inst
Math
Spanish Smie Calculator
Free Spanish smile calculator to estimate dental treatment costs in Spain instan
Math
Staking Apy Calculator
Free Staking APY calculator to estimate your crypto rewards instantly. Enter sta
Math
Child Support Calculator Colorado
Free Colorado child support calculator. Estimate payments accurately based on st
Math
Surface Area Of A Cone Calculator
Free cone surface area calculator computes total and lateral surface area instan
Math
Banfield Anesthesia Calculator
Free Banfield Anesthesia Calculator for accurate small animal drug dosing. Simpl
Math
Ti 30Xa Calculator
Use the TI-30Xa calculator online free for accurate scientific calculations. Sol
Math
Mobile Legends Damage Calculator
Free Mobile Legends damage calculator to plan your builds instantly. Input hero
Math
Spherical Equivalent Calculator
Free spherical equivalent calculator to convert your eyeglass prescription in se
Math
Construction Calculator Osrs
Free OSRS construction calculator to plan your level 1-99 training. Instantly ca
Math
Miami Cost Of Living Calculator
Free Miami cost of living calculator to compare your salary and expenses instant
Math
Complex Fraction Calculator
Free complex fraction calculator to simplify nested fractions instantly. Enter a
Math
Pokemon Go Stardust Calculator
Free Pokemon Go Stardust calculator to instantly estimate power-up costs. Enter
Math
Fidya Kaffarah Calculator
Free Fidya Kaffarah calculator to quickly compute your missed fasts expiation. E
Math
South Africa Uif Calculator
Free South Africa UIF calculator to estimate your unemployment benefits instantl
Math
Arknights Recruitment Calculator
Free Arknights Recruitment Calculator to find optimal tags and rare operators in
Math
Related Rates Calculator
Solve related rates calculus problems instantly. Free calculator shows step-by-s
Math
Podcast Revenue Calculator
Free podcast revenue calculator to estimate ad, sponsorship, and listener income
Math
Plastic Footprint Calculator
Free plastic footprint calculator to estimate your annual plastic waste. Track a
Math
Austria Minimum Wage Calculator
Free Austria minimum wage calculator for 2026. Enter your hours and rate to chec
Math
Minecraft Light Level Calculator
Free Minecraft light level calculator to check if mobs can spawn instantly. Ente
Math
Septic Tank Size Calculator
Free septic tank size calculator. Quickly estimate the ideal tank capacity based
Math
Minecraft Portal Calculator
Free Minecraft Portal Calculator to instantly convert Nether and Overworld coord
Math
Divide Polynomials Calculator
Free divide polynomials calculator to simplify polynomial long division step by
Math
Ssp Calculator Uk
Free SSP calculator for UK employers and employees. Quickly calculate Statutory
Math
Tf2 Calculator
Free TF2 calculator to instantly convert in-game currencies and track your item
Math
Dutch Minimumloon Calculator
Free Dutch Minimumloon Calculator to instantly check your legal minimum wage per
Math
Ti 34 Multiview Calculator
Free Ti 34 Multiview calculator for accurate math solutions. Enter equations to
Math
Binomial Coefficient Calculator
Free online calculator to compute binomial coefficients (n choose k) instantly.
Math
Pokemon Ev Calculator
Free Pokemon EV calculator to instantly plan and maximize your Pokemon's stats.
Math
Candle Calculator
Free candle calculator estimates burn time, wax weight, and scent load. Perfect
Math
Lego Calculator
Free interactive Lego calculator for kids. Learn math by building and solving pr
Math
Dnd Armor Class Calculator
Free DnD Armor Class Calculator for 5e. Instantly compute your AC from armor, sh
Math
Reynolds Number Calculator
Free Reynolds number calculator for pipe flow analysis. Enter fluid properties a
Math
Clash Royale Gold Calculator
Free Clash Royale Gold Calculator to instantly plan your upgrade costs. Enter ca
Math
Madrid Cost Of Living Calculator
Free Madrid cost of living calculator to estimate your monthly expenses instantl
Math
Asphalt Millings Calculator
Free asphalt millings calculator to estimate tons needed for your driveway or pa
Math
Handheld Calculator
Free handheld calculator for quick arithmetic, percentages, and square roots. Pe
Math
League Of Legends Kda Calculator
Free League of Legends KDA calculator to instantly compute your kill-death-assis
Math
Catch Rate Calculator
Free catch rate calculator for Pokémon games. Instantly calculate capture probab
Math
Va Hearing Loss Rating Calculator
Free VA hearing loss rating calculator to estimate your disability percentage ba
Math
D2R Skill Calculator
Free D2R Skill Calculator to plan and optimize your Diablo 2 Resurrected charact
Math
Mexico City Cost Of Living Calculator
Free Mexico City cost of living calculator to estimate monthly expenses instantl
Math
French Parental Leave Calculator
Free French parental leave calculator to estimate your daily allowance instantly
Math
Canada Ei Maternity Calculator
Free Canada EI maternity calculator to estimate your weekly benefits instantly.
Math
Ti 34 Calculator
Use the Ti 34 Calculator online for free. Solve fractions, exponents, and statis
Math
Amsterdam Cost Of Living Calculator
Free Amsterdam cost of living calculator to estimate your monthly expenses insta
Math
Lebenshaltungskosten Calculator
Free Lebenshaltungskosten calculator to compare living costs between cities inst
Math
P3R Fusion Calculator
Free P3R Fusion Calculator. Instantly find optimal Persona 3 Reload fusion recip
Math
Complete The Square Calculator
Free Complete The Square calculator. Solve quadratic equations by completing the
Math
Impermanent Loss Calculator
Calculate impermanent loss instantly with our free calculator. Compare HODL vs L
Math
Pokemon Ability Calculator
Free Pokemon Ability Calculator to instantly find the best ability for any speci
Math
Vector Cross Product Calculator
Free Vector Cross Product Calculator computes the cross product of two 3D vector
Math
Heat Pump Calculator
Free heat pump calculator to size your system and estimate energy savings. Enter
Math
Financial Health Score Calculator
Free Financial Health Score Calculator to evaluate your financial wellness insta
Math
Cata Talent Calculator
Free Cata talent calculator to plan and optimize your Cataclysm spec. Enter tale
Math
London Cost Of Living Calculator
Free London cost of living calculator to compare your monthly expenses instantly
Math
Pfic Calculator
Free PFIC calculator to estimate your passive foreign investment company tax eas
Math
Pokemon Tcg Damage Calculator
Free Pokemon TCG damage calculator to instantly compute attack damage with weakn
Math
Cs Trade Up Calculator
Free CS Trade Up Calculator. Quickly calculate your expected return, profit, and
Math
Canada Ei Calculator
Use our free Canada EI calculator to estimate your weekly benefits instantly. En
Math
Minecraft Fps Calculator
Free Minecraft FPS calculator to estimate your frames per second instantly. Ente
Math
Zurich Cost Of Living Calculator
Free Zurich cost of living calculator to estimate your monthly expenses instantl
Math
Harvard Graphing Calculator
Free Harvard Graphing Calculator. Plot functions, solve equations, and analyze d
Math
Pink Calculator
Use this free pink calculator online for basic math. No download needed. Perfect
Math
Multivariable Limit Calculator
Free multivariable limit calculator to compute limits of functions with multiple
Math
Md Child Support Calculator
Quickly estimate Maryland child support with our free calculator. Get a fair, co
Math
Roof Sheathing Calculator
Free roof sheathing calculator to estimate plywood or OSB sheets needed for your
Math
Lu Decomposition Calculator
Free LU Decomposition calculator for solving matrices online. Get lower and uppe
Math
Can You Use A Calculator On The Asvab
Find out if a calculator is allowed on the ASVAB. Get free, expert-approved tips
Math
Words Correct Per Minute Calculator
Free words correct per minute calculator to measure reading fluency instantly. E
Math
ComponentAmount (€)Status
Gross Income${income.toLocaleString("de-DE")}
Allowance (Freibetrag)${soliFreibetrag.toLocaleString("de-DE")}${income > soliFreibetrag ? 'Exceeded' : 'Not exceeded'}
Income Tax (Basis)${einkommensteuer.toLocaleString("de-DE")}
Solidaritätszuschlag (5.5%)${soli.toLocaleString("de-DE")}${soli === 0 ? 'Exempt' : 'Applied'}
Church Surcharge