Sierra Leone Exchange Rate Calculator

Sierra Leone Exchange Rate Calculator (SLE/SLL Converter) .sle-calculator-container { max-width: 600px; margin: 20px auto; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); background-color: #ffffff; padding: 25px; } .sle-header { text-align: center; margin-bottom: 25px; border-bottom: 2px solid #1EB53A; /* Sierra Leone Green */ padding-bottom: 15px; } .sle-header h2 { margin: 0; color: #0072C6; /* Sierra Leone Blue */ } .sle-form-group { margin-bottom: 20px; } .sle-label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; } .sle-input, .sle-select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .sle-input:focus, .sle-select:focus { outline: none; border-color: #1EB53A; box-shadow: 0 0 5px rgba(30, 181, 58, 0.3); } .sle-help-text { font-size: 12px; color: #666; margin-top: 5px; } .sle-btn { width: 100%; padding: 14px; background-color: #1EB53A; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } .sle-btn:hover { background-color: #159c30; } .sle-result-box { margin-top: 25px; padding: 20px; background-color: #f9f9f9; border-radius: 4px; border-left: 5px solid #0072C6; display: none; } .sle-result-text { font-size: 24px; font-weight: bold; color: #333; text-align: center; } .sle-sub-result { text-align: center; font-size: 14px; color: #555; margin-top: 10px; } .article-content { max-width: 800px; margin: 40px auto; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; } .article-content h2 { color: #0072C6; border-bottom: 1px solid #eee; padding-bottom: 10px; margin-top: 30px; } .article-content h3 { color: #1EB53A; } .highlight-box { background-color: #eef7ff; padding: 15px; border-left: 4px solid #0072C6; margin: 20px 0; }

Sierra Leone Currency Converter

Convert SLE, SLL, USD, GBP, and EUR

USD ($) to New Leone (SLE) New Leone (SLE) to USD ($) GBP (£) to New Leone (SLE) New Leone (SLE) to GBP (£) Euro (€) to New Leone (SLE) New Leone (SLE) to Euro (€) Old Leone (SLL) to New Leone (SLE) New Leone (SLE) to Old Leone (SLL)
Enter the current market rate (SLE per 1 Unit of Foreign Currency).
0.00 SLE

Understanding the Sierra Leone Exchange Rate

Managing finances involving the Sierra Leonean Leone requires an understanding of the recent currency redenomination and the fluctuating exchange rates against major global currencies like the US Dollar (USD), British Pound (GBP), and Euro (EUR). This calculator helps individuals, businesses, and travelers quickly convert amounts between the New Leone (SLE), the Old Leone (SLL), and foreign currencies.

The Difference Between SLE (New Leone) and SLL (Old Leone)

Key Rule: 1 New Leone (SLE) = 1,000 Old Leones (SLL).

In July 2022, Sierra Leone redenominated its currency, removing three zeros from the banknotes. While the value remains the same, the representation changed significantly. For example, if you have a bank note of 10,000 Old Leones, it is now equal to 10 New Leones (SLE). It is crucial to check which denomination prices are quoted in, especially in informal markets.

Exchange Rate Volatility

The exchange rate in Sierra Leone can be volatile. There is often a difference between the official Central Bank rate and the parallel market rate (often referred to as the "Jalloh rate" or street rate). When using this calculator for real-world transactions:

  • Bank Transactions: Use the official rate provided by commercial banks in Freetown.
  • Cash Exchanges: Street rates may offer a higher conversion for foreign currency but come with security risks.
  • Remittances: Services like Western Union or MoneyGram often have their own set rates which may differ from the mid-market rate.

How to Calculate Conversions Manually

If you need to calculate the exchange rate manually without this tool, follow these formulas:

Converting USD to SLE

Multiply your USD amount by the current exchange rate.
Example: $100 USD × 23.50 (Rate) = 2,350 SLE (New Leones).

Converting SLE to USD

Divide your SLE amount by the current exchange rate.
Example: 5,000 SLE ÷ 23.50 (Rate) ≈ $212.76 USD.

Converting Old Leones to New Leones

Divide the Old Leone amount by 1,000.
Example: 1,000,000 SLL ÷ 1,000 = 1,000 SLE.

function updateLabels() { var mode = document.getElementById('sle_conversion_mode').value; var amountLabel = document.getElementById('amount_label'); var rateGroup = document.getElementById('rate_group'); var rateHelp = document.getElementById('rate_help'); // Show rate input by default rateGroup.style.display = 'block'; if (mode === 'USD_TO_SLE') { amountLabel.innerText = 'Amount in USD ($)'; rateHelp.innerText = 'Enter current rate: How many SLE for 1 USD?'; } else if (mode === 'SLE_TO_USD') { amountLabel.innerText = 'Amount in New Leone (SLE)'; rateHelp.innerText = 'Enter current rate: How many SLE for 1 USD?'; } else if (mode === 'GBP_TO_SLE') { amountLabel.innerText = 'Amount in GBP (£)'; rateHelp.innerText = 'Enter current rate: How many SLE for 1 GBP?'; } else if (mode === 'SLE_TO_GBP') { amountLabel.innerText = 'Amount in New Leone (SLE)'; rateHelp.innerText = 'Enter current rate: How many SLE for 1 GBP?'; } else if (mode === 'EUR_TO_SLE') { amountLabel.innerText = 'Amount in Euro (€)'; rateHelp.innerText = 'Enter current rate: How many SLE for 1 EUR?'; } else if (mode === 'SLE_TO_EUR') { amountLabel.innerText = 'Amount in New Leone (SLE)'; rateHelp.innerText = 'Enter current rate: How many SLE for 1 EUR?'; } else if (mode === 'SLL_TO_SLE') { amountLabel.innerText = 'Amount in Old Leone (SLL)'; rateGroup.style.display = 'none'; // Fixed rate } else if (mode === 'SLE_TO_SLL') { amountLabel.innerText = 'Amount in New Leone (SLE)'; rateGroup.style.display = 'none'; // Fixed rate } // Clear result when switching modes document.getElementById('sle_result').style.display = 'none'; } function calculateSLEConversion() { // Get inputs var amount = parseFloat(document.getElementById('sle_amount').value); var rate = parseFloat(document.getElementById('sle_rate').value); var mode = document.getElementById('sle_conversion_mode').value; var resultElement = document.getElementById('main_result'); var subElement = document.getElementById('sub_result'); var resultBox = document.getElementById('sle_result'); var finalValue = 0; var symbol = ""; // Validation if (isNaN(amount)) { alert("Please enter a valid amount."); return; } // Logic for fixed SLL conversion (Old vs New) if (mode === 'SLL_TO_SLE') { finalValue = amount / 1000; symbol = "SLE"; subElement.innerText = "Fixed Rate: 1,000 SLL = 1 SLE"; } else if (mode === 'SLE_TO_SLL') { finalValue = amount * 1000; symbol = "SLL"; subElement.innerText = "Fixed Rate: 1 SLE = 1,000 SLL"; } else { // Logic for Foreign Currency if (isNaN(rate) || rate <= 0) { alert("Please enter a valid exchange rate."); return; } if (mode === 'USD_TO_SLE') { finalValue = amount * rate; symbol = "SLE"; subElement.innerText = "Rate used: 1 USD = " + rate + " SLE"; } else if (mode === 'SLE_TO_USD') { finalValue = amount / rate; symbol = "USD"; subElement.innerText = "Rate used: 1 USD = " + rate + " SLE"; } else if (mode === 'GBP_TO_SLE') { finalValue = amount * rate; symbol = "SLE"; subElement.innerText = "Rate used: 1 GBP = " + rate + " SLE"; } else if (mode === 'SLE_TO_GBP') { finalValue = amount / rate; symbol = "GBP"; subElement.innerText = "Rate used: 1 GBP = " + rate + " SLE"; } else if (mode === 'EUR_TO_SLE') { finalValue = amount * rate; symbol = "SLE"; subElement.innerText = "Rate used: 1 EUR = " + rate + " SLE"; } else if (mode === 'SLE_TO_EUR') { finalValue = amount / rate; symbol = "EUR"; subElement.innerText = "Rate used: 1 EUR = " + rate + " SLE"; } } // Formatting Output var formattedValue = finalValue.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 }); if (symbol === "SLE") { resultElement.innerText = "NLe " + formattedValue; } else if (symbol === "SLL") { resultElement.innerText = "Le " + formattedValue; } else if (symbol === "USD") { resultElement.innerText = "$ " + formattedValue; } else if (symbol === "GBP") { resultElement.innerText = "£ " + formattedValue; } else if (symbol === "EUR") { resultElement.innerText = "€ " + formattedValue; } resultBox.style.display = 'block'; } // Initialize labels on load updateLabels();

Leave a Comment