Stamp Duty Calculator Uk Rates 2025

Stamp Duty Calculator UK Rates 2025 :root { –primary-color: #004d40; –secondary-color: #00796b; –accent-color: #e0f2f1; –text-color: #333; –border-radius: 8px; } body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: var(–text-color); max-width: 800px; margin: 0 auto; padding: 20px; } .calculator-container { background-color: #ffffff; border: 1px solid #ddd; border-radius: var(–border-radius); padding: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 40px; } .calc-header { text-align: center; margin-bottom: 25px; color: var(–primary-color); } .form-group { margin-bottom: 20px; } .form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #2c3e50; } .input-wrapper { position: relative; } .input-wrapper span { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #777; font-weight: bold; } .form-control { width: 100%; padding: 12px 12px 12px 35px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } select.form-control { padding-left: 12px; } .checkbox-group { display: flex; align-items: center; margin-top: 10px; } .checkbox-group input { width: 18px; height: 18px; margin-right: 10px; } .btn-calculate { background-color: var(–primary-color); color: white; border: none; padding: 15px 30px; font-size: 18px; border-radius: 4px; cursor: pointer; width: 100%; font-weight: bold; transition: background-color 0.2s; } .btn-calculate:hover { background-color: var(–secondary-color); } .results-area { margin-top: 30px; padding: 25px; background-color: var(–accent-color); border-radius: var(–border-radius); display: none; border-left: 5px solid var(–secondary-color); } .result-row { display: flex; justify-content: space-between; margin-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 10px; } .result-row.total { border-bottom: none; margin-top: 15px; font-size: 1.2em; font-weight: bold; color: var(–primary-color); } .result-label { color: #555; } .result-value { font-weight: 700; } .content-section { margin-top: 40px; } h2, h3 { color: var(–primary-color); } .tax-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .tax-table th, .tax-table td { border: 1px solid #ddd; padding: 10px; text-align: left; } .tax-table th { background-color: var(–primary-color); color: white; } .alert-box { background-color: #fff3cd; border: 1px solid #ffeeba; color: #856404; padding: 15px; border-radius: 4px; margin-bottom: 20px; font-size: 0.95em; }

Stamp Duty Calculator (SDLT)

Updated for post-March 2025 Thresholds

£
Home Mover (Standard Rate) First Time Buyer Additional Property / Buy-to-Let (+3%)
Base SDLT: £0.00
Surcharge (Add. Property/Non-Res): £0.00
Total Stamp Duty Payable: £0.00
Effective Tax Rate: 0.00%
function calculateSDLT() { // Inputs var priceInput = document.getElementById('propertyPrice'); var buyerType = document.getElementById('buyerType').value; var isNonResident = document.getElementById('nonResident').checked; var resultsDiv = document.getElementById('results'); var price = parseFloat(priceInput.value); // Validation if (isNaN(price) || price 500k = Standard Rates. // Determine Logic Path var useFTBRates = (buyerType === 'ftb' && price <= 500000); if (useFTBRates) { // FTB Calculation if (price 500k or Additional) // Band 1: 0 – 125,000 @ 0% // Band 2: 125,001 – 250,000 @ 2% // Band 3: 250,001 – 925,000 @ 5% // Band 4: 925,001 – 1,500,000 @ 10% // Band 5: Over 1,500,000 @ 12% var taxableValue = price; // Band 5 (Over 1.5m) if (taxableValue > 1500000) { baseTax += (taxableValue – 1500000) * 0.12; taxableValue = 1500000; } // Band 4 (925k – 1.5m) if (taxableValue > 925000) { baseTax += (taxableValue – 925000) * 0.10; taxableValue = 925000; } // Band 3 (250k – 925k) if (taxableValue > 250000) { baseTax += (taxableValue – 250000) * 0.05; taxableValue = 250000; } // Band 2 (125k – 250k) if (taxableValue > 125000) { baseTax += (taxableValue – 125000) * 0.02; taxableValue = 125000; } // Band 1 (0 – 125k) is 0% } // Calculate Surcharges // Additional Property Surcharge: 3% on total price // Non-Resident Surcharge: 2% on total price // Note: FTB buying their first home generally don't pay 3% surcharge, but if Non-Resident FTB, they pay 2%. var surchargeRate = 0; if (buyerType === 'additional') { surchargeRate += 0.03; } if (isNonResident) { surchargeRate += 0.02; } surchargeAmount = price * surchargeRate; totalTax = baseTax + surchargeAmount; // Display Results var formatter = new Intl.NumberFormat('en-GB', { style: 'currency', currency: 'GBP', minimumFractionDigits: 2 }); document.getElementById('baseTaxDisplay').innerHTML = formatter.format(baseTax); document.getElementById('surchargeDisplay').innerHTML = formatter.format(surchargeAmount); document.getElementById('totalTaxDisplay').innerHTML = formatter.format(totalTax); var effectiveRate = (totalTax / price) * 100; if (isNaN(effectiveRate)) effectiveRate = 0; document.getElementById('effectiveRateDisplay').innerHTML = effectiveRate.toFixed(2) + "%"; resultsDiv.style.display = "block"; }

Understanding Stamp Duty Rates in 2025

Important Update: The "temporary" Stamp Duty cuts introduced in 2022 are scheduled to end on 31 March 2025. This calculator reflects the rates expected to be in force from 1 April 2025 onwards.

Stamp Duty Land Tax (SDLT) is a progressive tax paid when purchasing property or land in England and Northern Ireland. The amount you pay depends on the property price, your residency status, and whether you own other properties.

The 2025 Threshold Changes

From April 2025, the 0% threshold for standard buyers is expected to revert from £250,000 back to £125,000. Similarly, the First Time Buyer relief threshold is expected to drop from £425,000 back to £300,000.

Property Price Band Standard Rate (Home Mover) Additional Property Rate
£0 – £125,000 0% 3%
£125,001 – £250,000 2% 5%
£250,001 – £925,000 5% 8%
£925,001 – £1.5 Million 10% 13%
Over £1.5 Million 12% 15%

Detailed Buyer Scenarios

1. First Time Buyers (FTB)

If you, and anyone else you are buying with, have never owned a property before, you are eligible for tax relief.

  • No Tax: On the first £300,000 of the property price.
  • 5% Tax: On the portion between £300,001 and £500,000.
  • Ineligible: If the property costs more than £500,000, you pay standard rates on the full amount.

2. Home Movers (Standard Rate)

If you are replacing your main residence (selling your previous home to buy a new one), you pay the standard rates shown in the table above. Note that the tax is calculated on the portion of the price falling within each band.

3. Additional Properties & Buy-to-Let

If you are purchasing a second home or a buy-to-let investment, you must pay a 3% surcharge on top of standard rates. This applies to the entire purchase price bands, meaning even the first £125,000 is taxed at 3%.

4. Non-UK Residents

A 2% surcharge applies to non-UK residents purchasing residential property in England and Northern Ireland. This can be combined with the Additional Property surcharge, resulting in a potential 5% top-up on standard rates.

Calculation Example (Home Mover)

For a property purchase of £450,000 after March 2025:

  • First £125,000 @ 0% = £0
  • Next £125,000 (£125k to £250k) @ 2% = £2,500
  • Remaining £200,000 (£250k to £450k) @ 5% = £10,000
  • Total Stamp Duty: £12,500

Leave a Comment