XAU

Gold (troy ounce)

metal
ISO Code: XAUNumeric: 959Decimals: 4Region: Global

Formatting Examples

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

Intl.NumberFormat

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

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

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