Han Xin code (æ±Âä¿¡ç  in Chinese, Chinese-sensible code) is two-dimensional (2D) matrix barcode symbology invented in 2007 by Chinese company The Article Numbering Center of China (ä¸Âå½ç©åÂÂç¼Âç Âä¸Âå¿ in Chinese) to break the monopoly of QR code. As a QR code, Han Xin code consists of black squares and white square spaces arranged in a square grid on a white background. It has four finder patterns and other markers which allow to recognize it with camera-based readers. Han Xin code contains ReedâÂÂSolomon error correction with ability to read corrupted images. At this time, it is issued as ISO/IEC 20830:2021.
The main advantage (and invention requirement), comparable to QR code, is an embedded ability to natively encode Chinese characters instead of Japanese in QR code. Han Xin code in maximal 84 version (189ÃÂ189 size) allows to encode 7827 numeric characters, 4350 English text characters, 3261 bytes and 1044âÂÂ2174 Chinese characters (it depends on Unicode region). Han Xin code encodes full ISO/IEC 646 Latin characters instead of restricted amount Latin characters which is supported by QR code. It makes Han Xin code more suitable for English text encoding or GS1 Application Identifiers data encoding.
Additionally, Han Xin code can encode Unicode characters from other languages with special Unicode mode, which has embedded lossless compression for UTF-8 characters set and Extended Channel Interpretation support. Han Xin code has special compactification mode for URI encoding and can reduce barcode size which encodes links to web pages.
The Article Numbering Center of China (ä¸Âå½ç©åÂÂç¼Âç Âä¸Âå¿ in Chinese) started research during the 10th Five-year plans of China of a home-grown QR code replacement to replace QR codes, which were considered a Japanese monopoly in 2D barcodes. In 2007, the new barcodes standard, at this time known as Han Xin code, was published as GB/T 21049-2007 with the name Chinese-sensible code.
In 2011, USA company Association for Automatic Identification and Mobility (AIM) brought out ISS Han Xin Code symbology as official encoding standard and published it in the own store.
In 2015, the ISO/IEC JTC 1/SC 31 group started implementation of Han Xin code as an international standard and published it as ISO/IEC 20830:2021 in 2021.
In 2022, the Chinese-sensible code standard was reviewed as GB/T 21049-2022 and renamed as Han Xin code to be compliant with ISO standard.
The following patents relating to Han Xin code encoding and decoding are registered in Europe and the United States:
Han Xin code can be used in the same way as QR code. At this time Han Xin code is used mostly in China, because it has embedded encoding ability to encode Chinese characters. However, most of barcode printers and barcode scanners support Han Xin code. Han Xin code can be scanned on iOS and Android mobile devices and many barcode libraries support reading and writing Han Xin code.
Main advantages of Han Xin code are:
Han Xin code represents data in black and white square modules, where dark module is a binary one and a light module is a zero. Additionally, Han Xin code can be encoded in inverse colors, but this option in many barcode readers is disabled by default. Black and white modules are arranged into square region with sizes from 23 ÃÂ 23 modules (Version 1) to 189 ÃÂ 189 modules (Version 84). As QR code, Han Xin code does not have rectangular versions like DataMatrix has and this restricts usage of Han Xin code in some cases. Han Xin code version size can be calculated with the following formula: <br>
Han Xin code symbol is constructed from the following elements:
Finder Pattern consists from four Position Detection Patterns located at the four corners of the barcode. The size of Position Detection Pattern is 7ÃÂ7 modules and it is constructed from 5 elements: dark 7 ÃÂ 7 modules, light 6 ÃÂ 6 modules, dark 5 ÃÂ 5 modules, light 4 ÃÂ 4 modules, dark 3 ÃÂ 3 modules respectively.
The scanning ratio of each Position Detection Pattern is 1:1:1:1:3 or 3:1:1:1:1 (depends on scanning direction). The four patterns orientation allows to detect unambiguously the barcode location and orientation.
Every pattern has Position Detection Pattern separator with Structural Information Region aligned to it.
The Alignment Patterns are added to the Han Xin code from Version 4 (Versions 1âÂÂ3 do not have alignment patterns) and used to precise cell position in the distorted barcodes. Alignment Patterns in Han Xin code are split into:
The Alignment Pattern is made up of a dark line and a downside adjacent light line which are one module wide. Assistant Alignment Pattern consisting from 5 light modules and 1 dark module indicates edge of region block with its dark module.
Below you can see examples of Han Xin code with different Alignment pattern placement.
Han Xin code Structural Information Region is a one module wide region surrounding the four Position Detection Patterns. Han Xin code has two Structural Information identical arrays, which are made from 34 data modules. Every Structural Information array is split on 17 modules which are placed around each Position Detection Pattern.
Structural Information Region encodes the following data:
Metadata bits from 0âÂÂ11 are split into 4 bits tetrads(m2, m1, m0) and supplemented with four error correction tetrads (r3, r2, r1, r0).
To make Han Xin code dark and light modules amount to be closely to 1:1 in the symbol, masking algorithm is used. Masking sequence is applied to Data Region through the XOR operation. Finder Pattern, Alignment Patterns and Structural Information Regions are excluded from masking operation. The following table shows mask pattern algorithms (which is placed to Structural Information Region).
i - Row index of the symbol. <br>j - Column index of the symbol. <br>Both and start from (1,1), the top left corner module of the symbol. When the masking solution condition is true, the resulting mask bit is 1.
Han Xin code uses ReedâÂÂSolomon error correction. Encoded data is represented as byte (8-bit) array. Data array divided into blocks and error correction codewords sequence is generated for each block which is added to the end of the error correction block. After this, all blocks are merged sequentially into byte stream.
The polynomial arithmetic for Han Xin Code uses finite field generation polynomial: x^8 + x^6 + x^5 + x (355 or 101100011b) with initial root = 1.
The amount of error correction codewords depends on symbol version and error correction level and can be from 16% to 60%, which allows to correct from 8% to 30% damage.
Han Xin code data is encoded as byte array. Data byte array is split into error correction blocks, where error correction codewords (bytes) are added. Error correction blocks are united into one codewords array:
(Encoded byte array) => (Error correction block 1) + ... + (Error correction block N) => (Codewords array)
As an example, this can be demonstrated on Han Xin code version 5 with error correction level L4. It has 27 encoded codewords and 2 error correction blocks with each block size of data codewords and error correction codewords: (14, 20), (13, 22):
(D1...D14, D15...D27) => (D1...D14, E1.1...1.20) + (D15...D27, E2.1...2.22) => (D1...D14, E1.1...1.20, D15...D27, E2.1...2.22) => (C1...C69) <br>D(x) - Data codewords. <br>E(b.x) - error codeword, where b is block number and x position in block. <br>C(x) - resulted codewords.
As the next operation, resulted codewords array C(x) is split into blocks with size of 13 bytes which connects codewords in the same position of each block and form new codewords array. The result is byte array of the same size but mixed by position of 13.
(á1...á13, á14...á26, án...Cn+12) => (á1, C14, Cn...á13, á26, Cn+12) => (CM1...CMn+12) <br>CM(x) â mixed by position of 13 array of codewords (bytes).
After the upper operations the resulted codewords are placed into data region row by row from left to right and from up to down. Horizontal line damage would affect fewer codewords, vertical line damage would affect more codewords.
Han Xin code can encode 7827 numeric characters, 4350 English text characters, 3261 bytes and 1044âÂÂ2174 Chinese characters in the maximal version 84 version. Additionally, it supports special Unicode and industrial modes. All modes can be mixed to obtain best compactification level for the data. The following table demonstrates abilities to encode data with different barcode version and error correction level.
All encoding modes can be split into the following groups:
The input data string in Numeric mode is divided into blocks of three digits (the last block can be less than three) and encoded in 10 bits (0000000000b - 1111100111b). The mode data is prefixed with mode indicator 0001b and terminates with mode terminator which also indicates number of digits in last group.
As an example, we need to encode digits sequence 12700402: <br>Prefix => 0001b <br>127 => 0001111111 <br>004 => 0000000100 <br>02 => 0000000010 <br>Terminator => 1111111110b
Text mode encodes data characters set from ISO/IEC 646. Each character is represented by 6 bits. All characters are divided into two subsets: Text1 sub-mode and Text2 sub-mode. 11110b value is used to switch between text sub-modes, 111111b is a mode terminator. Text mode starts from Text1 sub-mode.
Binary mode encodes bytes array [0 â 255] in any form. Binary mode consists from binary mode indicator 0011b, 13-bit binary counter and bytes data which are converted to 8-bit sequence. None mode terminator is required.
Chinese Characters modes is a set of 4 modes which encodes Chinese characters from GB 18030 codepage.
Unicode mode encodes UTF-8 charset with embedded lossless compression. In the Unicode mode, the input data is analysed by using self-adaptive algorithm. Firstly, input data is divided and combined into the 1, 2, 3, or 4 byte pattern preencoding sub-sequences, and secondly a run-length data compression algorithm is applied to encode each sub-sequences of the input data.
Shortly, the Unicode mode searches characters sub-pages which can have the same prefix sequence for all of characters of the same language (Cyrillic, Greek, French, German... languages) and encodes only differences from prefix bytes sequence.
Han Xin code GS1 mode is an indicator that the represented data is defined by GS1 General Specification. GS1 mode encodes data in Numeric and Text modes. Other modes may be used but GS1 mode must be first mode in the symbol and encoded data must be returned with GS1 flag. <FNC1> (if required) must be encoded as 1111101000b in Numeric mode (Numeric mode encodes only three digits, so 1111101000b => 1000 value is counted as special character). In case <FNC1> identifier must be inserted and encoder is in any mode different from Numeric, the mode must be terminated and Numeric mode must be started. GS1 mode indicator is 11100001b and GS1 mode terminator is 11111111b.
The data in GS1 mode is split into GS1 Application Identifiers chinks and then compacted with the best modes. As an example, the following data can be encoded: <br>(10)123456ABC<FNC1>(240)DATA
The data is encoded in the following way: <br><11100001b> <Numeric 10123456> <Text ABC> <Numeric mode selector> <1111101000b> <Numeric 240> <Text DATA> <11111111b>
Han Xin code URI mode encodes URI links in compact encoding. URI mode indicator is 11100010b and URI mode terminator is 111b. URI mode can encode data in three charsets: URI-A, URI-B, URI-C with own sub-mode terminators. URI mode can encode %XX data in special Percent-Encoding sub-mode, where three symbols is encoded in 8 bits.
Percent-Encoding sub-mode encodes %XX data in 8 bits sequence. The mode does not require any terminator. To encode URI %XX data in this mode, sub-mode indicator (100b) must be added, then 8-bit indicator of sub-mode 8 bits sequence must be added (counter = Length of %XX / 3) and after this sequence, where %FF, or %ff, or %00, must be added as xFF or x00 bytes.