Vietnamese Dong

fiat
ISO Code: VNDNumeric: 704Decimals: 0Region: Asia
🇻🇳

Developer Note

No minor unit.

Formatting Examples

Valueen-US
1₫1
9.99₫10
100₫100
1234.56₫1,235
1000000₫1,000,000

Intl.NumberFormat

JavaScript
// Basic VND formatting
new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'VND',
}).format(1234.00);
// → "₫1,234"

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

// Stripe / payment API amount
// VND amount = value × 1
// e.g. ¥1,000 → amount: 1000

Countries Using VND