฿

Thai Baht

fiat
ISO Code: THBNumeric: 764Decimals: 2Region: Asia
🇹🇭

Formatting Examples

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

Intl.NumberFormat

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

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

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

Countries Using THB