stdnum.cn.uscc

USCC (Unified Social Credit Code, 统一社会信用代码, China tax number).

This number consists of 18 digits or uppercase English letters (excluding the letters I, O, Z, S, V). The number is comprised of several parts:

  • Digit 1 represents the registering authority,

  • Digit 2 represents the registered entity type,

  • Digits 3 through 8 represent the registering region code,

  • Digits 9 through 17 represent the organisation code,

  • Digit 18 is a check digit (either a number or letter).

The registering authority digit most often is a 9, which represents the State Administration for Industry and Commerce (SAIC) as the registering authority.

The registered entity type indicates the type of business (or entity). The most common entity types in China are:

  • Wholly Foreign-Owned Enterprises (WFOE): 外商独资企业

  • Joint Ventures (JV): 合资

  • Representative Office: 代表处

  • State-Owned Enterprise (SOE): 国有企业

  • Private Enterprise: 民营企业

  • Individually-Owned: 个体户

The registering region code, sometimes referred to as the “administrative division code”, is a string of six numbers that indicates where the company is registered. It roughly follows the organisation of the official Chinese regions.

The organisation code comes directly from the China Organization Code certificate, an alternative document to the China Business License. It can contain letters or digits.

More information:

>>> validate('91110000600037341L')
'91110000600037341L'
>>> validate('A1110000600037341L')
Traceback (most recent call last):
    ...
InvalidFormat: ...
>>> validate('12345')
Traceback (most recent call last):
    ...
InvalidLength: ...
>>> format('9 1 110000 600037341L')
'91110000600037341L'
stdnum.cn.uscc.calc_check_digit(number)

Calculate the check digit for the number.

stdnum.cn.uscc.compact(number)

Convert the number to the minimal representation.

This strips the number of any valid separators and removes surrounding whitespace.

stdnum.cn.uscc.format(number)

Reformat the number to the standard presentation format.

stdnum.cn.uscc.is_valid(number)

Check if the number is a valid USCC.

stdnum.cn.uscc.validate(number)

Check if the number is a valid USCC.

This checks the length, formatting and check digit.