XAU
Gold (troy ounce)
metalISO Code: XAUNumeric: 959Decimals: 4Region: Global
Formatting Examples
| Value | en-US |
|---|---|
| 1 | XAU 1.00 |
| 9.99 | XAU 9.99 |
| 100 | XAU 100.00 |
| 1234.56 | XAU 1,234.56 |
| 1000000 | XAU 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