Platinum Calculator

Platinum Calculator .plat-calc-container { max-width: 800px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; line-height: 1.6; } .plat-calc-box { background-color: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 40px; } .plat-form-group { margin-bottom: 20px; } .plat-label { display: block; margin-bottom: 8px; font-weight: 600; color: #2c3e50; } .plat-input, .plat-select { width: 100%; padding: 12px; border: 1px solid #ced4da; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .plat-input:focus, .plat-select:focus { border-color: #80bdff; outline: none; box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); } .plat-row { display: flex; gap: 20px; flex-wrap: wrap; } .plat-col { flex: 1; min-width: 200px; } .plat-btn { display: block; width: 100%; padding: 14px; background-color: #5d6d7e; /* Platinum-like color */ color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } .plat-btn:hover { background-color: #4a5866; } .plat-result { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #5d6d7e; border-radius: 4px; display: none; } .plat-result-title { font-size: 14px; text-transform: uppercase; color: #6c757d; margin-bottom: 10px; } .plat-result-value { font-size: 32px; font-weight: 700; color: #2c3e50; margin-bottom: 5px; } .plat-result-detail { font-size: 15px; color: #555; border-top: 1px solid #eee; margin-top: 15px; padding-top: 15px; } .plat-article h2 { color: #2c3e50; margin-top: 30px; } .plat-article ul { margin-bottom: 20px; } .plat-article li { margin-bottom: 8px; } .plat-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .plat-table th, .plat-table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .plat-table th { background-color: #f2f2f2; } .helper-text { font-size: 12px; color: #666; margin-top: 4px; }

Platinum Melt Value Calculator

Enter the current market price per Troy Ounce.
Grams (g) Troy Ounces (oz t) Standard Ounces (oz) Pennyweight (dwt) Kilograms (kg)
.999 (Pure Bullion/Ingots) Pt950 / 950Plat (Common Jewelry) Pt900 / 900Plat Pt850 (Chains/older jewelry) Pt585 (58.5% Platinum)
Estimated Melt Value
$0.00
Breakdown:
Total Weight: 0 g
Converted Weight: 0 Troy Oz
Pure Platinum Content: 0 Troy Oz

How to Calculate Platinum Value

Platinum is a precious metal traded globally, often used in high-end jewelry, industrial converters, and bullion. Unlike gold, which is often measured in karats, platinum purity is almost exclusively measured in parts per thousand. To calculate the value of your platinum items, you need to understand three key factors: the weight, the purity, and the spot price.

1. Understanding Platinum Hallmarks (Purity)

Inspect your jewelry or bullion for a stamp (hallmark). This number indicates how much pure platinum is in the alloy compared to other metals (like cobalt or ruthenium).

Hallmark Purity Percentage Common Usage
Pt999 / .999 99.9% Investment Bullion, Bars, Coins
Pt950 / PLAT 95.0% High-end Engagement Rings, Wedding Bands
Pt900 90.0% Vintage Jewelry, Gemstone settings
Pt850 85.0% Chains, Bracelets

2. Converting Weight to Troy Ounces

The "Spot Price" of platinum is quoted in Troy Ounces, which is the standard unit for precious metals. A Troy ounce (approx 31.1 grams) is heavier than a standard kitchen ounce (approx 28.35 grams).

Our calculator automatically converts your input using these formulas:

  • Grams to Troy Oz: Weight (g) × 0.0321507
  • Pennyweight (dwt) to Troy Oz: Weight (dwt) × 0.05
  • Standard Ounces to Troy Oz: Weight (oz) × 0.911458

3. The Calculation Formula

Once you have the weight in Troy Ounces and the purity percentage, the math is straightforward:

Value = (Spot Price) × (Weight in Troy Oz) × (Purity Percentage)

For example, if you have a 10 gram ring stamped Pt950 and the spot price is $1,000:

  1. Convert 10g to Troy Oz: 10 × 0.03215 = 0.3215 oz t
  2. Calculate Pure Content: 0.3215 × 0.95 (95%) = 0.3054 oz t pure platinum
  3. Calculate Price: $1,000 × 0.3054 = $305.40

Important Note on Scrap vs. Retail

The value calculated here is the "Melt Value" or intrinsic metal value. If you are selling scrap platinum to a refiner or pawn shop, expect to receive a percentage (often 70%–90%) of this spot value. Conversely, if you are buying retail jewelry, the price will be significantly higher due to craftsmanship, brand markup, and retail overhead.

function calculatePlatinumValue() { // 1. Get Input Values var spotPrice = parseFloat(document.getElementById('ptSpotPrice').value); var weight = parseFloat(document.getElementById('ptWeight').value); var unit = document.getElementById('ptUnit').value; var purity = parseFloat(document.getElementById('ptPurity').value); // 2. Validate Inputs if (isNaN(spotPrice) || spotPrice <= 0) { alert("Please enter a valid current Platinum Spot Price."); return; } if (isNaN(weight) || weight <= 0) { alert("Please enter a valid weight."); return; } // 3. Convert Weight to Troy Ounces (The standard for Spot Price) var weightInTroyOz = 0; if (unit === 'gram') { // 1 Gram = 0.0321507 Troy Oz weightInTroyOz = weight * 0.0321507; } else if (unit === 'troy_oz') { // Already in Troy Oz weightInTroyOz = weight; } else if (unit === 'oz') { // 1 Standard Ounce = 0.911458 Troy Oz weightInTroyOz = weight * 0.911458; } else if (unit === 'dwt') { // 1 Pennyweight = 0.05 Troy Oz weightInTroyOz = weight * 0.05; } else if (unit === 'kg') { // 1 KG = 32.1507 Troy Oz weightInTroyOz = weight * 32.1507; } // 4. Calculate Pure Platinum Content var purePlatinumContent = weightInTroyOz * purity; // 5. Calculate Total Value var totalValue = purePlatinumContent * spotPrice; // 6. Display Results var resultDiv = document.getElementById('ptResult'); resultDiv.style.display = "block"; // Format Currency document.getElementById('finalValueDisplay').innerHTML = "$" + totalValue.toLocaleString('en-US', {minimumFractionDigits: 2, maximumFractionDigits: 2}); // Display Details document.getElementById('displayWeight').innerHTML = weight; document.getElementById('displayUnit').innerHTML = document.getElementById('ptUnit').options[document.getElementById('ptUnit').selectedIndex].text; document.getElementById('displayTroy').innerHTML = weightInTroyOz.toFixed(4); document.getElementById('displayPure').innerHTML = purePlatinumContent.toFixed(4); }

Leave a Reply

Your email address will not be published. Required fields are marked *