USh

Ugandan Shilling

fiat
ISO Code: UGXNumeric: 800Decimals: 0Region: Africa
🇺🇬

Formatting Examples

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

Intl.NumberFormat

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

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

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