LL

Lebanese Pound

fiat
ISO Code: LBPNumeric: 422Decimals: 2Region: Asia
🇱🇧

Formatting Examples

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

Intl.NumberFormat

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

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

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