L

Albanian Lek

fiat
ISO Code: ALLNumeric: 008Decimals: 2Region: Europe
🇦🇱

Formatting Examples

Valueen-US
1ALL 1
9.99ALL 10
100ALL 100
1234.56ALL 1,235
1000000ALL 1,000,000

Intl.NumberFormat

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

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

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

Countries Using ALL