L
Honduran Lempira
fiatISO Code: HNLNumeric: 340Decimals: 2Region: Americas
🇭🇳
Formatting Examples
| Value | en-US |
|---|---|
| 1 | HNL 1.00 |
| 9.99 | HNL 9.99 |
| 100 | HNL 100.00 |
| 1234.56 | HNL 1,234.56 |
| 1000000 | HNL 1,000,000.00 |
Intl.NumberFormat
JavaScript
// Basic HNL formatting
new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'HNL',
}).format(1234.56);
// → "HNL 1,234.56"
// Minimum/maximum fraction digits
new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'HNL',
minimumFractionDigits: 2,
maximumFractionDigits: 2,
}).format(99);
// ISO 4217 minor unit: 2 decimal places
// Stripe / payment API amount
// HNL amount = value × 100
// e.g. $10.00 → amount: 1000