SDR

XDRIMF Special Drawing Rights

special
ISO Code: XDRNumeric: 960ISO minor unit: N.A.Region: Global

Developer Note

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

Verified 2026-07-19. Primary source

How to implement XDR safely

SDR (Special Drawing Right) uses ISO 4217 alpha code XDR and numeric code 960.

XDR appears in the current ISO 4217 list published 2026-01-01. ISO 4217 does not assign XDR a minor unit. The 2-digit precision used in examples is a display choice, not an ISO storage scale. Configure Intl.NumberFormat with currency: "XDR"; do not hardcode the symbol or assume every currency uses two decimals.

SDR is the reference symbol in this dataset. Store XDR alongside the amount so exports, payments, and accounting data remain unambiguous. Format for display only after choosing the user's locale, because symbol placement and separators belong to the locale rather than the currency record.

XDR is a supranational or special-purpose unit and has no single country assignment in this directory. The record was checked against the SIX ISO 4217 source on 2026-07-19; recheck status-sensitive records when the Maintenance Agency publishes a new list.

  • Status: active
  • Numeric code: 960
  • ISO minor unit: not applicable
  • Verified: 2026-07-19

Reviewed 19 July 2026. Sources: SIX ISO 4217 current list

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);
// Example display precision: 2 decimal places
// ISO 4217 minor unit: not applicable

// ISO 4217 defines no integer storage scale for XDR.
// Choose and document product-specific precision.