R$

Brazilian Real

fiat
ISO Code: BRLNumeric: 986Decimals: 2Region: Americas
🇧🇷

Formatting Examples

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

Intl.NumberFormat

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

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

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

Countries Using BRL