XAG

Silver (troy ounce)

metal
ISO Code: XAGNumeric: 961Decimals: 4Region: Global

Formatting Examples

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

Intl.NumberFormat

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

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

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