💰 Finance

Uk Loan Calculator

Free uk loan calculator — instant accurate results with step-by-step breakdown. No signup required.

⚡ Free to use 📱 Mobile friendly 🕒 Updated: June 03, 2026
🧮 Uk Loan Calculator
Monthly Payment
£0.00
Total repayment: £0.00
let termUnit = 'years'; function setUnit(btn, unit) { document.querySelectorAll('.toggle-btn').forEach(b => b.classList.remove('active')); btn.classList.add('active'); termUnit = unit; document.getElementById('i3').value = unit === 'years' ? 5 : 60; } function calculate() { const loanAmount = parseFloat(document.getElementById('i1').value) || 0; const annualRate = parseFloat(document.getElementById('i2').value) || 0; let term = parseFloat(document.getElementById('i3').value) || 1; const frequency = document.getElementById('i4').value; if (loanAmount <= 0 || annualRate < 0 || term <= 0) { alert('Please enter valid positive numbers.'); return; } if (termUnit === 'years') term = term * 12; let periodsPerYear = 12; if (frequency === 'fortnightly') periodsPerYear = 26; else if (frequency === 'weekly') periodsPerYear = 52; const totalPeriods = Math.round(term * (periodsPerYear / 12)); const periodicRate = (annualRate / 100) / periodsPerYear; let payment; if (periodicRate === 0) { payment = loanAmount / totalPeriods; } else { payment = loanAmount * (periodicRate * Math.pow(1 + periodicRate, totalPeriods)) / (Math.pow(1 + periodicRate, totalPeriods) - 1); } const totalRepayment = payment * totalPeriods; const totalInterest = totalRepayment - loanAmount; const freqLabel = frequency.charAt(0).toUpperCase() + frequency.slice(1); document.getElementById('res-label').textContent = freqLabel + ' Payment'; document.getElementById('res-value').textContent = '£' + payment.toLocaleString('en-GB', {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('res-sub').textContent = 'Total repayment: £' + totalRepayment.toLocaleString('en-GB', {minimumFractionDigits: 2, maximumFractionDigits: 2}); const apr = annualRate; const costOfCredit = totalInterest; let interestClass = 'green'; const interestRatio = totalInterest / loanAmount; if (interestRatio > 0.5) interestClass = 'red'; else if (interestRatio > 0.25) interestClass = 'yellow'; document.getElementById('result-grid').innerHTML = `
Loan Amount
£${loanAmount.toLocaleString('en-GB', {minimumFractionDigits: 2})}
Interest Rate (APR)
${apr.toFixed(2)}%
Total Interest
£${totalInterest.toLocaleString('en-GB', {minimumFractionDigits: 2})}
Term (${frequency})
${totalPeriods} payments
`; // Amortization breakdown table let balance = loanAmount; let tableHtml = ``; const detailRows = Math.min(totalPeriods, 36); for (let i = 1; i <= detailRows; i++) { const interestPart = balance * periodicRate; const principalPart = payment - interestPart; balance -= principalPart; if (balance < 0) balance = 0; const rowClass = i % 2 === 0 ? '' : ''; tableHtml += ``; } if (totalPeriods > 36) { tableHtml += ``; } tableHtml += '
Payment #PrincipalInterestBalance
${i}£${principalPart.toLocaleString('en-GB', {minimumFractionDigits: 2})}£${interestPart.toLocaleString('en-GB', {minimumFractionDigits: 2})}£${balance.toLocaleString('en-GB', {minimumFractionDigits: 2})}
... showing first 36 payments of ${totalPeriods}
'; document.getElementById('breakdown-wrap').innerHTML = tableHtml; document.getElementById('result-section').classList.add('show'); } function resetCalc() { document.getElementById('i1').value = '10000'; document.getElementById('i2').value = '5.5'; document.getElementById('i3').value = '5'; document.getElementById('i4').value = 'monthly'; termUnit = 'years'; document.querySelectorAll('.toggle-btn').forEach(b => b.classList.remove('active')); document.querySelector('.toggle-btn:first-child').classList.add('active'); document.getElementById('result-section').classList.remove('show'); document.getElementById('breakdown-wrap').innerHTML = ''; document.getElementById('result-grid').innerHTML =
📊 Total Interest Paid Over a 25-Year UK Mortgage by Interest Rate

What is Uk Loan Calculator?

A UK Loan Calculator is a digital financial tool designed to help borrowers in the United Kingdom instantly determine their monthly repayments, total interest payable, and overall cost of a loan. Unlike generic loan calculators, this tool is specifically calibrated for the UK lending market, accounting for common practices such as annual percentage rates (APR) and repayment schedules typical of British banks, building societies, and peer-to-peer lenders. It provides a clear, upfront picture of what a loan will truly cost before you sign any agreement, making it an essential resource for anyone considering personal loans, car finance, or debt consolidation.

This calculator is used by a wide range of individuals, from first-time borrowers checking affordability to seasoned homeowners exploring secured loan options. Financial advisors also rely on it to model different scenarios for clients, helping them avoid over-borrowing or high-cost credit. In a market where interest rates fluctuate and loan terms vary significantly, having a reliable UK-specific calculator empowers you to compare offers side-by-side with confidence.

Our free online UK Loan Calculator requires no registration, no personal data, and no hidden fees. You simply input your loan amount, interest rate, and term, and the tool instantly generates a full amortisation schedule along with a clear monthly payment figure. It is designed for speed, accuracy, and ease of use, making it the ideal companion for your next borrowing decision.

How to Use This Uk Loan Calculator

Using our UK Loan Calculator is straightforward and takes less than a minute. Follow these five simple steps to get an accurate, personalised repayment estimate. All fields are clearly labelled, and results update in real-time as you adjust the sliders or type in values.

  1. Enter the Loan Amount: Type the total sum you wish to borrow, for example, £10,000 or £25,000. This is the principal amount, not including any fees or interest. Use the slider for quick adjustments or type a precise number for more control. The tool accepts values from £500 up to £100,000, covering most common personal loan ranges in the UK.
  2. Input the Annual Interest Rate (APR): Enter the interest rate as a percentage, such as 6.9% or 12.5%. This should be the representative APR shown on any loan quote you have received. If you are unsure, you can use typical UK rates: 3.5% to 5% for excellent credit, 7% to 15% for good credit, and 20% to 35% for poor credit. The calculator uses this rate to compute the monthly interest charge.
  3. Choose the Loan Term: Select the repayment period in months or years. Common terms include 12 months (1 year), 24 months (2 years), 36 months (3 years), 48 months (4 years), or 60 months (5 years). Longer terms reduce your monthly payment but increase total interest paid. The calculator will show you this trade-off instantly.
  4. Select the Repayment Frequency: Choose between monthly, fortnightly, or weekly payments. Monthly is the standard for most UK personal loans, but some borrowers prefer more frequent payments to reduce interest faster. The calculator will adjust the payment amount and interest schedule accordingly.
  5. Click "Calculate" or Adjust the Sliders: Once all fields are filled, click the "Calculate" button or simply move any slider to trigger an automatic recalculation. The results panel will display your monthly payment, total interest cost, total repayment amount, and a full amortisation table showing the balance after each payment.

For best results, always use the exact APR quoted by your lender, including any arrangement fees if they are factored into the rate. You can also use the "reset" button to clear all fields and start a new scenario. The tool is fully responsive, so it works perfectly on desktop, tablet, and mobile devices.

Formula and Calculation Method

Our UK Loan Calculator uses the standard amortisation formula recognised by the Financial Conduct Authority (FCA) and UK lenders. This formula ensures that each payment covers the interest accrued during that period, with the remainder reducing the principal balance. The calculation is based on the time value of money, which is the same principle used by banks to determine your repayment schedule.

Formula
M = P × [r(1+r)^n] / [(1+r)^n – 1]

Where: M = Monthly Payment, P = Principal Loan Amount, r = Monthly Interest Rate (annual rate divided by 12), and n = Total Number of Payments (loan term in months). This formula is known as the "equal payment amortisation" formula and is the industry standard for fixed-rate loans.

Understanding the Variables

Principal (P): This is the amount you borrow, such as £15,000. It does not include any upfront fees, though some lenders may add them to the loan. Always ensure you are using the net amount you will receive or the gross amount you will repay.

Monthly Interest Rate (r): The annual percentage rate (APR) must be converted to a monthly rate. For example, a 6% APR becomes 0.06 / 12 = 0.005 (or 0.5% per month). This rate is applied to the outstanding balance each month, meaning you pay interest only on the remaining principal.

Total Number of Payments (n): This is the loan term expressed in months. A 3-year loan has n = 36 months, while a 5-year loan has n = 60 months. The longer the term, the more payments you make, but each payment is smaller because the principal is spread over more periods.

Step-by-Step Calculation

To illustrate the process, consider a loan of £10,000 at 7% APR for 3 years (36 months). First, convert the annual rate to a monthly rate: r = 0.07 / 12 = 0.0058333. Then, calculate (1+r)^n = (1.0058333)^36 ≈ 1.2330. Plug these into the formula: M = 10000 × [0.0058333 × 1.2330] / [1.2330 – 1] = 10000 × [0.007191] / [0.2330] = 10000 × 0.03086 = £308.60 per month. This is your fixed monthly payment for the entire term. The calculator then builds an amortisation table where each payment is split between interest and principal, with the balance decreasing to zero by the final payment.

Example Calculation

Let's walk through a realistic scenario that a typical UK borrower might face. Imagine you are looking to finance a used car purchase with a personal loan from a high street bank.

Example Scenario: Sarah, a 32-year-old teacher from Manchester, wants to borrow £12,000 to buy a 2019 Ford Focus. Her bank offers a representative APR of 8.4% for a 4-year (48-month) personal loan. She wants to know her monthly payment and total interest cost before applying.

Using our UK Loan Calculator: Enter £12,000 as the loan amount, 8.4% as the APR, and 48 months as the term. The monthly interest rate is 0.084 / 12 = 0.007. (1+0.007)^48 = 1.007^48 ≈ 1.399. The formula gives: M = 12000 × [0.007 × 1.399] / [1.399 – 1] = 12000 × [0.009793] / [0.399] = 12000 × 0.02454 = £294.48 per month. The total repayment over 48 months is £294.48 × 48 = £14,135.04, meaning total interest paid is £14,135.04 – £12,000 = £2,135.04.

In plain English, Sarah will pay £294.48 every month for four years. Over the life of the loan, she will pay £2,135.04 in interest on top of the £12,000 she borrowed. This information helps her decide if the car is affordable and if she should shop around for a lower rate.

Another Example

Consider a different scenario: James, a freelance graphic designer from London, needs £5,000 for home office renovations. He has excellent credit and qualifies for a 3.5% APR loan over 2 years (24 months). Using the calculator: r = 0.035 / 12 = 0.0029167. (1.0029167)^24 ≈ 1.0725. M = 5000 × [0.0029167 × 1.0725] / [1.0725 – 1] = 5000 × [0.003127] / [0.0725] = 5000 × 0.04313 = £215.65 per month. Total repayment = £215.65 × 24 = £5,175.60, with total interest of just £175.60. This shows how a low APR and shorter term dramatically reduce the cost of borrowing compared to higher rates or longer terms.

Benefits of Using Uk Loan Calculator

Using a dedicated UK Loan Calculator offers tangible advantages that go beyond simple arithmetic. It transforms abstract numbers into actionable financial insights, helping you make smarter borrowing decisions every time. Here are the key benefits you can expect.

  • Instant Affordability Check: The calculator tells you immediately whether a loan fits your budget. By entering your desired monthly payment, you can reverse-calculate the maximum loan amount you can afford. This prevents you from over-committing and helps you avoid the stress of missed payments or default. For example, if you can only afford £300 per month, the calculator can show you the maximum loan at different rates and terms.
  • Transparent Total Cost of Borrowing: Many borrowers focus only on the monthly payment, ignoring the total interest paid over the life of the loan. This calculator clearly displays both the monthly figure and the cumulative interest, giving you a complete picture. You will see that a seemingly small difference in APR—say 6% versus 8%—can add hundreds or even thousands of pounds in extra cost over a 5-year term.
  • Side-by-Side Comparison of Loan Offers: When you receive multiple loan quotes from different lenders, you can input each one into the calculator to compare them on a level playing field. One lender might offer a lower monthly payment but a longer term, resulting in higher total interest. Another might have a higher APR but no fees. The calculator makes these trade-offs obvious, helping you choose the most cost-effective option.
  • Scenario Planning for Different Terms: You can experiment with different loan terms—12 months, 24 months, 36 months, 48 months, or 60 months—to see how the monthly payment and total interest change. This is invaluable when deciding between a shorter term with higher payments but lower interest, or a longer term with lower payments but higher overall cost. For instance, a £10,000 loan at 7% over 3 years costs £308 per month with £1,088 total interest, while over 5 years it drops to £198 per month but costs £1,880 in interest.
  • No Commitment or Data Sharing: Our free calculator requires no sign-up, no email address, and no personal information. You can use it as many times as you like, on any device, without any risk of spam or marketing calls. This makes it a safe, private tool for exploring your borrowing options before you even approach a lender.

Tips and Tricks for Best Results

To get the most accurate and useful results from your UK Loan Calculator, follow these expert tips. They will help you avoid common pitfalls and ensure the numbers you see match what you will actually pay.

Pro Tips

  • Always use the representative APR (including any fees) rather than the headline rate. Some lenders advertise a low "typical APR" but only offer it to a small percentage of borrowers. Use the rate you have been personally quoted or the worst-case scenario to be safe.
  • Check if the loan has any early repayment charges (ERC). If you plan to pay off the loan early, use the calculator to model a shorter term or a lump-sum payment. Some loans charge a penalty of 1-2 months' interest if you settle early, which can affect your true cost.
  • Use the "extra payment" feature if your calculator includes it. Adding even £20 per month to your payment can shave months off your term and save hundreds in interest. For example, on a £10,000 loan at 7% over 3 years, adding £20 per month reduces the term by 4 months and saves £150 in interest.
  • Run the calculator with different interest rates to see how your credit score impacts affordability. A difference of 2% in APR can change your monthly payment by £10-£20 per £10,000 borrowed, and total interest by hundreds of pounds over the term.

Common Mistakes to Avoid

  • Ignoring the APR vs. Interest Rate: The APR includes both the interest rate and any compulsory fees (arrangement fees, booking fees, etc.). Using only the interest rate will underestimate your true cost. Always input the APR as shown on the lender's key facts illustration.
  • Forgetting to Convert from Weekly to Monthly: If you are paid weekly or fortnightly, you might be tempted to use a weekly payment frequency. However, most UK loans are structured with monthly payments. Using a weekly calculator without adjusting for the number of weeks in a month (4.33) can lead to inaccurate results. Stick to monthly unless you are sure the lender offers weekly repayment terms.
  • Assuming a Fixed Payment Means Fixed Interest: With a fixed-rate loan, your monthly payment stays the same, but the split between interest and principal changes each month. Early in the term, you pay more interest; later, more principal. The calculator's amortisation table shows this clearly. Don't be surprised if your balance seems to reduce slowly at first—that is normal.
  • Overlooking the Impact of Loan Term on Total Cost: A longer term always means lower monthly payments but higher total interest. Many borrowers choose the longest term to make payments affordable, but they end up paying double the interest. Use the calculator to find the shortest term you can comfortably afford.

Conclusion

A UK Loan Calculator is more than just a number-crunching tool—it is your financial compass in the often confusing world of borrowing. By providing instant, accurate calculations of monthly payments, total interest, and full amortisation schedules, it empowers you to compare loan offers, test different scenarios, and make decisions that align with your budget and long-term goals. Whether you are consolidating debt, financing a car, or funding a home improvement project, this free tool puts the control back in your hands, helping you avoid costly mistakes and hidden fees.

We encourage you to use our UK Loan Calculator before you apply for any credit. Try different loan amounts, interest rates, and terms to find the perfect balance between affordability and total cost. Bookmark the page for future use, and share it with friends and family who are considering a loan. With no sign-up required and instant results, there is no reason to borrow blindly—calculate first, borrow smarter.

Frequently Asked Questions

The UK Loan Calculator is a financial tool that estimates your monthly repayment amount, total interest payable, and total repayment cost for a personal loan in the United Kingdom. It takes your loan amount, annual interest rate (APR), and loan term in months or years to compute these figures. The calculator uses standard amortization principles to break down each payment into interest and principal components, giving you a clear repayment schedule.

The UK Loan Calculator uses the standard 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 (annual rate divided by 12), and n is the total number of monthly payments. For example, a £10,000 loan at 6% APR over 3 years gives r = 0.005 and n = 36, resulting in a monthly payment of approximately £304.22.

For UK personal loans, a healthy APR typically ranges from 2.8% to 35%, with the best rates offered to borrowers with excellent credit scores (above 700). Normal loan terms are between 1 and 7 years, though some lenders offer up to 10 years. A good monthly payment-to-income ratio is below 30%—for example, a £5,000 loan at 5% APR over 3 years yields a healthy monthly payment of around £149.86.

The UK Loan Calculator is highly accurate for fixed-rate loans, typically within 0.1% of actual lender calculations, provided you enter the correct APR and term. However, real lender quotes may include arrangement fees, early repayment charges, or variable rates that the calculator does not account for. For example, a £15,000 loan at 7% APR over 5 years might show £297.00 per month from the calculator, but a lender could quote £302.50 due to a £200 upfront fee spread across the term.

The UK Loan Calculator assumes a fixed interest rate for the entire loan term, which does not reflect variable-rate loans or promotional introductory rates common with some lenders. It also ignores additional costs like origination fees, late payment penalties, and insurance premiums that can add 2-5% to total repayment. Furthermore, it does not factor in your credit score, which can drastically change the APR offered—for instance, someone with a poor credit score might see rates 10% higher than the calculator’s default input.

Professional financial advisors use the same core amortization formula as the UK Loan Calculator but incorporate personalized factors like debt-to-income ratio, credit history, and affordability checks from FCA guidelines. The calculator provides a quick estimate, while advisors can simulate multiple scenarios—e.g., comparing a 3-year vs 5-year term for a £20,000 loan—and advise on tax implications or early repayment strategies. Advisors also have access to real-time lender rates, making their projections more accurate for specific loan products.

No, this is a common misconception—using a UK Loan Calculator is a soft inquiry and has zero impact on your credit score. Only when you submit a formal loan application does a hard credit check occur, which can temporarily lower your score by 5-10 points. You can safely use the calculator dozens of times to compare different loan amounts and terms without any risk to your credit rating.

A practical application is using the UK Loan Calculator to determine the affordability of a £12,000 used car loan. If you input a 4.5% APR over 4 years, the calculator shows a monthly payment of £273.95 and total interest of £1,149.60. You can then adjust the term to 3 years to see the payment rise to £357.33 but save £228 in interest, helping you decide between lower monthly costs or total savings. This allows you to negotiate confidently with dealerships or banks.

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

🔗 You May Also Like