£

Egyptian Pound

fiat
ISO Code: EGPNumeric: 818Decimals: 2Region: Africa
🇪🇬

Formatting Examples

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

Intl.NumberFormat

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

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

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

Countries Using EGP