Silver Scrap Calculator

#silver-scrap-calculator-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 12px; background-color: #f9fbfd; color: #333; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .silver-calc-title { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 28px; font-weight: 700; } .silver-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } @media (max-width: 600px) { .silver-calc-grid { grid-template-columns: 1fr; } } .silver-calc-input-group { display: flex; flex-direction: column; } .silver-calc-input-group label { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #4a5568; } .silver-calc-input-group input, .silver-calc-input-group select { padding: 12px; border: 1px solid #cbd5e0; border-radius: 6px; font-size: 16px; background: #fff; } .silver-calc-btn { width: 100%; padding: 15px; background-color: #718096; color: white; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background 0.3s ease; margin-top: 10px; } .silver-calc-btn:hover { background-color: #4a5568; } .silver-calc-result { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #718096; border-radius: 4px; display: none; } .silver-calc-result h3 { margin: 0 0 10px 0; font-size: 20px; color: #2d3748; } .silver-calc-value { font-size: 32px; font-weight: 800; color: #2f855a; } .silver-calc-details { font-size: 14px; color: #718096; margin-top: 5px; } .silver-article-section { margin-top: 40px; line-height: 1.7; } .silver-article-section h2 { color: #2c3e50; border-bottom: 2px solid #edf2f7; padding-bottom: 10px; } .silver-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .silver-table th, .silver-table td { padding: 12px; text-align: left; border-bottom: 1px solid #edf2f7; } .silver-table th { background-color: #f8fafc; }
Silver Scrap Melt Value Calculator
Grams (g) Troy Ounces (ozt) Pennyweight (dwt)
.999 Fine Silver .958 Britannia Silver .925 Sterling Silver .900 Coin Silver (US) .835 European Silver .800 German/Italian Silver .500 British Junk Silver

Estimated Melt Value:

$0.00

How to Calculate Silver Scrap Value

Selling silver jewelry, silverware, or old coins requires understanding the melt value. This is the intrinsic value of the metal content before any refiner's fees or dealer premiums are applied. Our calculator uses the current spot price and the purity of your silver to determine exactly how much silver you actually have.

Common Silver Purity Levels

Type Fineness Common Uses
Sterling Silver 92.5% Jewelry, Cutlery, High-end hollowware
Coin Silver 90.0% Pre-1965 US Dimes, Quarters, Halves
Fine Silver 99.9% Bullion bars, Investment rounds
Britannia 95.8% British silver coins and plates

The Math Behind the Calculation

To calculate the value manually, we follow these steps:

  1. Convert Weight to Troy Ounces: If your weight is in grams, divide by 31.1035. (Note: Standard ounces are 28.35g, but precious metals use Troy Ounces).
  2. Determine Pure Content: Multiply the weight in troy ounces by the purity (e.g., 0.925 for sterling).
  3. Apply Market Price: Multiply the pure troy ounces by the current market spot price.

Example Calculation:
Suppose you have 100 grams of Sterling Silver (.925) and the spot price is $24.00 per troy oz.
1. 100g / 31.1035 = 3.215 ozt
2. 3.215 ozt * 0.925 = 2.974 pure ozt
3. 2.974 * $24.00 = $71.38 Melt Value

Tips for Selling Scrap Silver

  • Check Hallmarks: Look for "925", "Sterling", or "800" stamps to confirm purity.
  • Separate by Karat: Don't mix 80% silver with sterling, or you may get paid for the lowest purity.
  • Expect Fees: Refiners and local coin shops usually pay 70% to 90% of the melt value to cover their overhead and melting costs.
function calculateSilverScrap() { var weightInput = document.getElementById('silverWeight').value; var unit = document.getElementById('weightUnit').value; var purity = parseFloat(document.getElementById('silverPurity').value); var spotPrice = document.getElementById('marketPrice').value; if (!weightInput || !spotPrice || weightInput <= 0 || spotPrice <= 0) { alert("Please enter valid positive numbers for weight and market price."); return; } var weight = parseFloat(weightInput); var marketPrice = parseFloat(spotPrice); var weightInTroyOz; // Convert all inputs to Troy Ounces for the math if (unit === 'g') { weightInTroyOz = weight / 31.1034768; } else if (unit === 'dwt') { weightInTroyOz = weight / 20; } else { weightInTroyOz = weight; } // Calculate pure silver content var pureWeight = weightInTroyOz * purity; var totalValue = pureWeight * marketPrice; // Calculate details for display var pureGrams = pureWeight * 31.1034768; // Display results document.getElementById('silverResult').style.display = 'block'; document.getElementById('totalValueDisplay').innerText = '$' + totalValue.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); var breakdownText = "Contains approx. " + pureWeight.toFixed(3) + " troy oz (" + pureGrams.toFixed(2) + "g) of pure silver."; document.getElementById('breakdownDisplay').innerText = breakdownText; // Scroll to result document.getElementById('silverResult').scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment