د.ج

Algerian Dinar

fiat
ISO Code: DZDNumeric: 012Decimals: 2Region: Africa
🇩🇿

Formatting Examples

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

Intl.NumberFormat

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

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

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

Countries Using DZD