¥

Chinese Yuan Renminbi

fiat
ISO Code: CNYNumeric: 156Decimals: 2Region: Asia
🇨🇳

Developer Note

Symbol ¥ shared with JPY. Compact uses 万 (wàn = 10k) and 亿 (yì = 100M).

Formatting Examples

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

Intl.NumberFormat

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

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

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

Countries Using CNY