🇧🇩
Bangladesh
CLDR Locale:
ISO: BD / BGDRegion: AsiaDigits: bengali
Try It — Live Preview
Number
১২,৩৪,৫৬৭.৮৯
Currency (BDT)
১২,৩৪,৫৬৭.৮৯৳
Percentage
১,২৩৪,৫৬৮%
Compact
১২ লা
Format Rules
Decimal Separator
.period
Thousands Separator
,comma
Grouping Pattern
2-3
Negative Format
-১২,৩৪,৫৬৭.৮৯
Currency Symbol
৳ (BDT)
Currency Position
Before number → ৳12,34,567.89
Percent Position
After number → ১৩%
Zero
০.০০
Compact
১২ লা
Code Examples
// Basic number
new Intl.NumberFormat('bn-BD').format(1234567.89)
// → "12,34,567.89"
// Currency
new Intl.NumberFormat('bn-BD', {
style: 'currency',
currency: 'BDT'
}).format(1234567.89)
// → "৳12,34,567.89"
// Percentage
new Intl.NumberFormat('bn-BD', {
style: 'percent',
minimumFractionDigits: 1
}).format(0.125)
// Compact notation
new Intl.NumberFormat('bn-BD', {
notation: 'compact'
}).format(1234567)Negative Number Formats
Standard-১২,৩৪,৫৬৭.৮৯
new Intl.NumberFormat('bn-BD').format(-1234567.89)Accounting style(১২,৩৪,৫৬৭.৮৯৳)
new Intl.NumberFormat('bn-BD', { style: 'currency', currency: 'BDT', currencySign: 'accounting' }).format(-1234567.89)Edge Cases & Notes
Bengali digit system (০১২৩৪৫৬৭৮৯) used in native locale, Western digits in en-BD.