¥

CNYChinese Yuan Renminbi

fiat
ISO Code: CNYNumeric: 156ISO minor unit: 2Region: Asia
🇨🇳

Developer Note

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

Verified 2026-07-19. Primary source

How to implement CNY safely

Yuan Renminbi uses ISO 4217 alpha code CNY and numeric code 156.

CNY appears in the current ISO 4217 list published 2026-01-01. CNY has ISO minor unit 2, so one major unit divides into 100 minor units. Configure Intl.NumberFormat with currency: "CNY"; do not hardcode the symbol or assume every currency uses two decimals.

¥ is the reference symbol in this dataset. Store CNY alongside the amount so exports, payments, and accounting data remain unambiguous. Format for display only after choosing the user's locale, because symbol placement and separators belong to the locale rather than the currency record.

This site's coverage associates CNY with 1 countries or territories (CN). Region and language still need separate locale selection; the currency code alone does not choose punctuation or digit shapes. The record was checked against the SIX ISO 4217 source on 2026-07-19; recheck status-sensitive records when the Maintenance Agency publishes a new list.

  • Status: active
  • Numeric code: 156
  • ISO minor unit: 2
  • Verified: 2026-07-19

Reviewed 19 July 2026. Sources: SIX ISO 4217 current list

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);
// Example display precision: 2 decimal places
// ISO 4217 minor unit: 2

// Integer minor-unit storage
// CNY amount = value × 100

Countries Using CNY