Difference Between China's Country Codes CN and C2 #country_code
When reading the PayPal API documentation’s country codes, I found two codes listed for China: CN and C2, so I investigated the difference between them.
CHINA
- CN (For domestic Chinese bank transactions only)
- C2 (For CUP, bank card and cross-border transactions)
When translated to Japanese, it appears that CN and C2 country codes need to be used differently for domestic Chinese and international payments.
C2 is a country code uniquely defined by PayPal; generally, China’s country code is CN.
When developing international e-commerce sites with PayPal as a payment option, I think implementing with the following policy would be good:
PayPal’s unique C2 should only appear when using PayPal API, so using CN for everything else is simple. Otherwise, you’d need to define both CN and C2 for China alone for country code determination, which would lead to awkward implementation.
That’s all from the Gemba.