Bs.S

Venezuelan Bolívar Soberano

fiat
ISO Code: VESNumeric: 928Decimals: 2Region: Americas
🇻🇪

Formatting Examples

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

Intl.NumberFormat

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

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

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

Countries Using VES