Bangladeshi Taka

fiat
ISO Code: BDTNumeric: 050Decimals: 2Region: Asia
🇧🇩

Formatting Examples

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

Intl.NumberFormat

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

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

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

Countries Using BDT