XPT

Platinum (troy ounce)

metal
ISO Code: XPTNumeric: 962Decimals: 4Region: Global

Formatting Examples

Valueen-US
1XPT 1.00
9.99XPT 9.99
100XPT 100.00
1234.56XPT 1,234.56
1000000XPT 1,000,000.00

Intl.NumberFormat

JavaScript
// Basic XPT formatting
new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'XPT',
}).format(1234.56);
// → "XPT 1,234.56"

// Minimum/maximum fraction digits
new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'XPT',
  minimumFractionDigits: 4,
  maximumFractionDigits: 4,
}).format(99);
// ISO 4217 minor unit: 4 decimal places

// Stripe / payment API amount
// XPT amount = value × 10000
// e.g. $10.00 → amount: 1000