SDR

IMF Special Drawing Rights

special
ISO Code: XDRNumeric: 960Decimals: 2Region: Global

Developer Note

International reserve asset created by the IMF. Not used in everyday transactions.

Formatting Examples

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

Intl.NumberFormat

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

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

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