Big5 publishers USA
   HOME

TheInfoList



OR:

Big-5 or Big5 is a
Chinese character encoding In computing, Chinese character encodings can be used to represent text written in the CJK languages—Chinese, Japanese, Korean—and (rarely) obsolete Vietnamese, all of which use Chinese characters. Several general-purpose character enc ...
method used in Taiwan, Hong Kong, and Macau for traditional Chinese characters. The People's Republic of China (PRC), which uses simplified Chinese characters, uses the GB 18030 character set instead. Big5 gets its name from the consortium of five companies in Taiwan that developed it.


Organization

The original Big5 character set is sorted first by usage frequency, second by stroke count, lastly by
Kangxi radical The 214 Kangxi radicals (), also known as the Zihui radicals, form a system of radicals () of Chinese characters. The radicals are numbered in stroke count order. They are the most popular system of radicals for dictionaries that order Traditi ...
. The original Big5 character set lacked many commonly used characters. To solve this problem, each vendor developed its own extension. The ETen extension became part of the current Big5 standard through popularity. The structure of Big5 does not conform to the ISO 2022 standard, but rather bears a certain similarity to the encoding. It is a double-byte character set (DBCS) with the following structure: (the prefix 0x signifying hexadecimal numbers). Standard assignments (excluding vendor or user-defined extensions) do not use the bytes through , nor , as either lead (first) or trail (second) bytes. Bytes through are used for both lead and trail bytes for double-byte (Big5) codes. Bytes through are used as trail bytes following a lead byte, or for single-byte codes otherwise. If the second byte is not in either range, behavior is unspecified (i.e., varies from system to system). Additionally, certain variants of the Big5 character set, for example the HKSCS, use an expanded range for the lead byte, including values in the to range (similar to ), whereas others use reduced lead byte ranges (for instance, the Apple Macintosh variant uses through as single-byte codes, limiting the lead byte range to through ). The numerical value of individual Big5 codes are frequently given as a 4-digit hexadecimal number, which describes the two bytes that comprise the Big5 code as if the two bytes were a
big endian In computing, endianness, also known as byte sex, is the order or sequence of bytes of a word of digital data in computer memory. Endianness is primarily expressed as big-endian (BE) or little-endian (LE). A big-endian system stores the most sig ...
representation of a 16-bit number. For example, the Big5 code for a full-width space, which are the bytes , is usually written as or just A140. Strictly speaking, the Big5 encoding contains only DBCS characters. However, in practice, the Big5 codes are always used together with an unspecified, system-dependent single-byte character set ( ASCII, or an 8-bit character set such as
code page 437 Code page 437 (CCSID 437) is the character set of the original IBM PC (personal computer). It is also known as CP437, OEM-US, OEM 437, PC-8, or DOS Latin US. The set includes all printable ASCII characters as well as some accented letters (diacri ...
), so that you will find a mix of DBCS characters and single-byte characters in Big5-encoded text. Bytes in the range to that are not part of a double-byte character are assumed to be single-byte characters. (For a more detailed description of this problem, please see the discussion on "The Matching SBCS" below.) The meaning of non-ASCII single bytes outside the permitted values that are not part of a double-byte character varies from system to system. In old MSDOS-based systems, they are likely to be displayed as 8-bit characters; in modern systems, they are likely to either give unpredictable results or generate an error.


A more detailed look at the organization

In the original Big5, the encoding is compartmentalized into different zones: The "graphical characters" actually comprise punctuation marks, partial punctuation marks (e.g., half of a dash, half of an ellipsis; see below), dingbats, foreign characters, and other special characters (e.g., presentational "full width" forms, digits for Suzhou numerals, zhuyin fuhao, etc.) In most vendor extensions, extended characters are placed in the various zones reserved for user-defined characters, each of which are normally regarded as associated with the preceding zone. For example, additional "graphical characters" (e.g., punctuation marks) would be expected to be placed in the – range, and additional logograms would be placed in either the – or the – range. Sometimes, this is not possible due to the large number of extended characters to be added; for example,
Cyrillic , bg, кирилица , mk, кирилица , russian: кириллица , sr, ћирилица, uk, кирилиця , fam1 = Egyptian hieroglyphs , fam2 = Proto-Sinaitic , fam3 = Phoenician , fam4 = G ...
letters and Japanese kana have been placed in the zone associated with "frequently-used characters".


What a Big5 code actually encodes

An individual Big5 code does not always represent a complete semantic unit. The Big5 codes of logograms are always logograms, but codes in the "graphical characters" section are not always complete "graphical characters". What Big5 encodes are particular graphical representations of characters or part of characters that happen to fit in the space taken by two monospaced ASCII characters. This is a property of double-byte character sets as normally used in CJK (Chinese, Japanese, and Korean) computing, and is not a unique problem of Big5. (The above might need some explanation by putting it in historical perspective, as it is ''theoretically'' incorrect: Back when text mode personal computing was still the norm, characters were normally represented as single bytes and each character takes one position on the screen. There was therefore a practical reason to insist that double-byte characters must take up two positions on the screen, namely that off-the-shelf, American-made software would then be usable without modification in a DBCS-based system. If a character can take an arbitrary number of screen positions, software that assumes that one ''byte'' of text takes one screen position would produce incorrect output. Of course, if a computer never had to deal with the text screen, the manufacturer would not enforce this artificial restriction; the Apple Macintosh is an example. Nevertheless, the encoding itself must be designed so that it works correctly on text-screen-based systems.) To illustrate this point, consider the Big5 code (…). To English speakers this looks like an ellipsis and the Unicode standard identifies it as such; however, in Chinese, the ellipsis consists of six dots that fit in the space of two Chinese characters (……), so in fact there is no Big5 code for the Chinese ellipsis, and the Big5 code just represents half of a Chinese ellipsis. It represents only half of an ellipsis because the whole ellipsis should take the space of two Chinese characters, and in many DBCS systems one DBCS character must take exactly the space of one Chinese character. Characters encoded in Big5 do not always represent things that can be readily used in plain text files; an example is "citation mark" (, ﹋), which is, when used, required to be typeset under the title of literary works. Another example is the Suzhou numerals, which is a form of scientific notation that requires the number to be laid out in a 2-D form consisting of at least two rows.


The Matching SBCS

In practice, Big5 cannot be used without a matching Single Byte Character Set (SBCS); this is mostly to do with a compatibility reason. However, as in the case of other CJK DBCS character sets, the SBCS to use has never been specified. Big5 has always been defined as a DBCS, though when used it must be paired with a suitable, ''unspecified'' SBCS and therefore used as what some people call a MBCS; nevertheless, Big5 by itself, as defined, is strictly a DBCS. The SBCS to use being unspecified implies that the SBCS used can theoretically vary from system to system. Nowadays, ASCII is the only possible SBCS one would use. However, in old DOS-based systems,
Code Page 437 Code page 437 (CCSID 437) is the character set of the original IBM PC (personal computer). It is also known as CP437, OEM-US, OEM 437, PC-8, or DOS Latin US. The set includes all printable ASCII characters as well as some accented letters (diacri ...
—with its extra special symbols in the control code area including position 127—was much more common. Yet, on a Macintosh system with the Chinese Language Kit, or on a Unix system running the cxterm terminal emulator, the SBCS paired with Big5 would not be Code Page 437. Outside the valid range of Big5, the old DOS-based systems would routinely interpret things according to the SBCS that is paired with Big5 on that system. In such systems, characters 127 to 160, for example, were very likely not avoided because they would produce invalid Big5, but used because they would be valid characters in Code Page 437. The modern characterization of Big5 as an MBCS consisting of the DBCS of Big5 plus the SBCS of ASCII is therefore historically incorrect and potentially flawed, as the choice of the matching SBCS was, and theoretically still is, quite independent of the flavour of Big5 being used.


History

The inability of ASCII to support large character sets such as used for Chinese, Japanese and Korean led to governments and industry to find creative solutions to enable their languages to be rendered on computers. A variety of ad hoc and usually proprietary input methods led to efforts to develop a standard system. As a result, Big5 encoding was defined by the Institute for Information Industry of Taiwan in 1984. The name "Big5" is in recognition that the standard emerged from collaboration of five of Taiwan's largest IT firms: Acer ( 宏碁); MiTAC (神通); JiaJia (佳佳), ZERO ONE Technology (零壹 o
01tech
; and, First International Computer (FIC) (大眾). Big5 was rapidly popularized in Taiwan and worldwide among Chinese who used the traditional Chinese character set through its adoption in several commercial software packages, notably the
E-TEN E-TEN Information Systems Co., Ltd. (倚天資訊股份有限公司) was an electronics manufacturing company based in Taiwan, specializing in sophisticated handheld devices such as smartphones. Founded in 1985 in Taipei, E-TEN initially became ...
Chinese DOS input system (
ETen Chinese System ETen Chinese System (倚天中文系統) was the most popular DOS-compatible traditional Chinese operating system before Chinese Windows 95. DOS did not support Chinese characters, which are not in Extended ASCII. Many companies in Taiwan develope ...
). The
Republic of China Taiwan, officially the Republic of China (ROC), is a country in East Asia, at the junction of the East and South China Seas in the northwestern Pacific Ocean, with the People's Republic of China (PRC) to the northwest, Japan to the northeast ...
government declared Big5 as their standard in mid-1980s since it was, by then, the ''de facto'' standard for using traditional Chinese on computers.


Extensions

The original Big-5 only include CJK logograms from the Charts of Standard Forms of Common National Characters (4808 characters) and Less-Than-Common National Characters (6343 characters), but not letters from people's names, place names, dialects,
chemistry Chemistry is the science, scientific study of the properties and behavior of matter. It is a natural science that covers the Chemical element, elements that make up matter to the chemical compound, compounds made of atoms, molecules and ions ...
, biology, Japanese kana. As a result, many Big-5 supporting software include extensions to address the problems. The plethora of variations make UTF-8 or UTF-16 a more consistent code page for modern use.


Vendor extensions


ETen extensions

In ETen (倚天) Chinese operating system, the following code points are added, to add support for some characters present in the
IBM 5550 IBM 5550 is a personal computer series that IBM marketed in Japan, Korea, Taiwan and China in the 1980s and 1990s, for business use customers. In Japan, it was introduced in 1983 and promoted as "" because it had three roles in one machine: a ...
's code page but absent from generic Big5: * A3C0–A3E0: 33 control characters. * C6A1–C875: circle 1–10, bracket 1–10,
Roman numerals Roman numerals are a numeral system that originated in ancient Rome and remained the usual way of writing numbers throughout Europe well into the Late Middle Ages. Numbers are written with combinations of letters from the Latin alphabet, eac ...
1–9 (i–ix), CJK radical glyphs, Japanese hiragana, Japanese katakana,
Cyrillic , bg, кирилица , mk, кирилица , russian: кириллица , sr, ћирилица, uk, кирилиця , fam1 = Egyptian hieroglyphs , fam2 = Proto-Sinaitic , fam3 = Phoenician , fam4 = G ...
characters * F9D6–F9FE: the characters ' ', ' ', ' ', ' ', ' ', ' ' and ' ', followed by 34 additional semigraphic symbols. In some versions of ETen, there are extra graphical symbols and simplified Chinese characters.


Microsoft code pages

Microsoft (微軟) created its own version of Big5 extension as Code page 950 for use with
Microsoft Windows Windows is a group of several proprietary graphical operating system families developed and marketed by Microsoft. Each family caters to a certain sector of the computing industry. For example, Windows NT for consumers, Windows Server for serv ...
, which supports the F9D6-F9FE code points from ETEN's extensions. In some versions of Windows, the euro currency symbol is mapped to Big-5 code point A3E1. After installing Microsoft'
HKSCS patch
on top of traditional Chinese Windows (or any version of Windows 2000 and above with proper language pack), applications using code page 950 automatically use a hidden code page 951 table. The table supports all code points in HKSCS-2001, except for the compatibility code points specified by the standard.


IBM code pages

In contrast to Microsoft's code page 950, IBM's CCSID 950 comprises single byte code page 1114 (CCSID 1114) and double byte code page 947 (CCSID 947). It incorporates ETEN extensions for lead bytes , , and , while omitting those with lead byte (which Microsoft includes), mapping them instead to the Private Use Area as user-defined characters. It also includes two non-ETEN extension regions with trail bytes , i.e. outside the usual Big5 trail byte range but similar to the Big5+ trail byte range: area 5 has lead bytes and contains IBM-selected characters, while area 9 has lead bytes and is a user-defined region. IBM refers to the euro sign update of their Big-5 variant as CCSID 1370, which includes both single-byte () and double-byte () euro signs. It comprises single byte code page 1114 (CCSID 5210) and double byte code page 947 (CCSID 21427). For better compatibility with Microsoft's variant in
IBM Db2 Db2 is a family of data management products, including database servers, developed by IBM. It initially supported the relational model, but was extended to support object–relational features and non-relational structures like JSON a ...
, IBM also define the pure double-byte Code page 1372 and the associated variable-width CCSID 1373, which corresponds to Microsoft's code page 950. IBM assigns CCSID 5471 to the HKSCS-2001 Big5 code page (with CPGID 1374 as CCSID 5470 as the double byte component), CCSID 9567 to the HKSCS-2004 code page (with CPGID 1374 as CCSID 9566 as the double byte component), and CCSID 13663 to the HKSCS-2008 code page (with CPGID 1374 as CCSID 13662 as the double byte component), while CCSID 1375 is assigned to a growing HKSCS code page, currently equivalent to CCSID 13663.


ChinaSea font

ChinaSea fonts (中國海字集) are Traditional Chinese fonts made by ChinaSea. The fonts are rarely sold separately, but are bundled with other products, such as the Chinese version of Microsoft Office 97. The fonts support Japanese kana,
kokuji are the logographic Chinese characters taken from the Chinese script and used in the writing of Japanese. They were made a major part of the Japanese writing system during the time of Old Japanese and are still used, along with the subsequent ...
, and other characters missing in Big-5. As a result, the ChinaSea extensions have become more popular than the government-supported extensions. Some Hong Kong BBSes had used encodings in ChinaSea fonts before the introduction of HKSCS.


'Sakura' font

Th
'Sakura' font
(日和字集 Sakura Version) is developed in Hong Kong and is designed to be compatible with HKSCS. It adds support for
kokuji are the logographic Chinese characters taken from the Chinese script and used in the writing of Japanese. They were made a major part of the Japanese writing system during the time of Old Japanese and are still used, along with the subsequent ...
and proprietary dingbats (including Doraemon) not found in HKSCS.


Unicode-at-on

Unicode-at-on ( Unicode補完計畫), formerly BIG5 extension, extends BIG-5 by altering code page tables, but uses the ChinaSea extensions starting with version 2. However, with the bankruptcy of ChinaSea, late development, and the increasing popularity of HKSCS and Unicode (the project is not compatible with HKSCS), the success of this extension is limited at best. Despite the problems, characters previously mapped to Unicode Private Use Area are remapped to the standardized equivalents when exporting characters to Unicode format.


OPG

The web sites of the Oriental Daily News and
Sun Daily ''The Sun '' () was one of the newspapers in Hong Kong, first published in March 1999. It belonged to the Oriental Press Group Limited (東方報業集團有限公司). The paper ceased publication in April 2016. There was also an electronic ...
, belonging to the
Oriental Press Group Limited Oriental Press Group Limited is the publishing company of Hong Kong newspaper ''Oriental Daily News'', as well as now defunct '' The Sun'' and ''Eastern Express''. Oriental Press Group was the founding company of the magazines ''East Week'', ''Eas ...
(東方報業集團有限公司) in Hong Kong, used a downloadable font with a different Big-5 extension coding than the HKSCS.


Official extensions


Taiwan Ministry of Education font

The Taiwan Ministry of Education supplied its own font, the Taiwan Ministry of Education font (臺灣教育部造字檔) for use internally.


Taiwan Council of Agriculture font

Taiwan's Council of Agriculture font, Executive Yuan introduced a 133-character custom font, the Taiwan Council of Agriculture font (臺灣農委會常用中文外字集) that includes 84 characters from the fish radical and 7 from the bird radical.


Big5+

The
Chinese Foundation for Digitization Technology Chinese can refer to: * Something related to China * Chinese people, people of Chinese nationality, citizenship, and/or ethnicity **''Zhonghua minzu'', the supra-ethnic concept of the Chinese nation ** List of ethnic groups in China, people of va ...
(中文數位化技術推廣委員會) introduced Big5+ in 1997, which used over 20000 code points to incorporate all CJK logograms in Unicode 1.1. However, the extra code points exceeded the original Big-5 definition (Big5+ uses high byte values 81-FE and low byte values 40-7E and 80-FE), preventing it from being installed on Microsoft Windows without new codepage files.


Big-5E

To allow Windows users to use custom fonts, the
Chinese Foundation for Digitization Technology Chinese can refer to: * Something related to China * Chinese people, people of Chinese nationality, citizenship, and/or ethnicity **''Zhonghua minzu'', the supra-ethnic concept of the Chinese nation ** List of ethnic groups in China, people of va ...
introduced Big-5E, which added 3954 characters (in three blocks of code points: 8E40-A0FE, 8140-86DF, 86E0-875C) and removed the Japanese kana from the ETEN extension. Unlike Big-5+, Big5E extends Big-5 within its original definition.
Mac OS X 10.3 Mac OS X Panther (version 10.3) is the fourth major release of macOS, Apple's desktop and server operating system. It followed Mac OS X Jaguar and preceded Mac OS X Tiger. It was released on October 24, 2003. System requirements Panther's s ...
and later supports Big-5E in the fonts LiHei Pro (儷黑 Pro.ttf) and LiSong Pro (儷宋 Pro.ttf).


Big5-2003

The
Chinese Foundation for Digitization Technology Chinese can refer to: * Something related to China * Chinese people, people of Chinese nationality, citizenship, and/or ethnicity **''Zhonghua minzu'', the supra-ethnic concept of the Chinese nation ** List of ethnic groups in China, people of va ...
made a Big5 definition and put it into
CNS 11643 The CNS 11643 character set (Chinese National Standard 11643), also officially known as the Chinese Standard Interchange Code or CSIC ( zh, tr=, t=中文標準交換碼), is officially the standard character set of Taiwan (Republic of China). In p ...
in note form, making it part of the official standard in Taiwan. Big5-2003 incorporates all Big-5 characters introduced in the 1984 ETEN extensions (code points A3C0-A3E0, C6A1-C7F2, and F9D6-F9FE) and the Euro symbol. Cyrillic characters were not included because the authority claimed CNS 11643 does not include such characters.


CDP

The
Academia Sinica Academia Sinica (AS, la, 1=Academia Sinica, 3=Chinese Academy; ), headquartered in Nangang, Taipei, is the national academy of Taiwan. Founded in Nanking, the academy supports research activities in a wide variety of disciplines, ranging from ...
made a Chinese Data Processing font (漢字構形資料庫) in late 1990s, which the latest release version 2.5 included 112,533 characters, some less than the Mojikyo fonts.


HKSCS

Hong Kong also adopted Big5 for character encoding. However, written Cantonese has its own characters not available in the normal Big5 character set. To solve this problem, the
Hong Kong Government The Government of the Hong Kong Special Administrative Region, commonly known as the Hong Kong Government or HKSAR Government, refers to the Executive (government), executive authorities of Hong Kong Special administrative regions of China, ...
created the Big5 extensions
Government Chinese Character Set The Hong Kong Supplementary Character Set (; commonly abbreviated to HKSCS) is a set of Chinese characters – 4,702 in total in the initial release—used in Cantonese, as well as when writing the names of some places in Hong Kong (whether in w ...
(GCCS) in 1995 and Hong Kong Supplementary Character Set in 1999. The Hong Kong extensions were commonly distributed as a patch. It is still being distributed as a patch by Microsoft, but a full Unicode font is also available from the Hong Kong Government's web site. There are two encoding schemes of HKSCS: one encoding scheme is for the Big-5 coding standard and the other is for the ISO 10646 standard. Subsequent to the initial release, there are also HKSCS-2001 and HKSCS-2004. The HKSCS-2004 is aligned technically with the ISO/IEC 10646:2003 and its Amendment 1 published in April 2004 by the International Organization for Standardization (ISO). HKSCS includes all the characters from the common ETEN extension, plus some characters from simplified Chinese, place names, people's names, and Cantonese phrases (including profanity). , the most recent edition of HKSCS is HKSCS-2016; however, the last edition of HKSCS to encode all of its characters in Big5 was HKSCS-2008, while the characters added in more recent editions are mapped to ISO 10646 / Unicode only (as a CJK Unified Ideographs horizontal glyph extension where appropriate). Additionally, similarly to Hong Kong's situation, there are also characters that are needed by Macao but is neither included in Big5 nor HKSCS, hence, the ''Macao Supplementary Character Set'' was developed, comprising characters not found in Big5 or HKSCS; this, however, is also not encoded in Big5. The first batch of 121 MSCS characters were submitted for inclusion in of mapping to Unicode in 2009, and the first final version of MSCS was established in 2020.


Kana and Cyrillic

There are two major Big5 extension layouts for encoding kana,
Russian Cyrillic The Russian alphabet (russian: ру́сский алфави́т, russkiy alfavit, , label=none, or russian: ру́сская а́збука, russkaya azbuka, label=none, more traditionally) is the script used to write the Russian language. I ...
and list markers in the range 0xC6A1 through 0xC875. These are not compatible with one another. They are compared in the table below. The ETEN layout of kana and Cyrillic is also used by the HKSCS (including HTML5) and Unicode-At-On variants, as well as by IBM's version of code page 950, and the ETEN layout of the kana (with Cyrillic omitted) is also used by the Big5-2003 variant. The published mapping files for Windows-950 include neither, and this Big5 range is mapped to the Private Use Area by the Windows-950 implementation from International Components for Unicode. The Python's built-in codec implementation is using the BIG5.TXT layout.Script showing output of cp950 codec for lead bytes 0xC6 and 0xC7
/ref> The
classic Mac OS Mac OS (originally System Software; retronym: Classic Mac OS) is the series of operating systems developed for the Macintosh family of personal computers by Apple Computer from 1984 to 2001, starting with System 1 and ending with Mac OS 9. The ...
version includes neither layout.


See also

* Unicode * Han unification * Chinese input methods for computers


References

*


External links


Mozilla and the Big5 Family of Encodings
an overview of Big5 encodings with code charts for each extension and relevant Firefox bugs (Traditional Chinese)

by Christian Wittern
CNS 11643 official web site
has information about the Big5e character set (an extended version of Big5) in the "Chinese Information Code" section.
Big5 introduction
Contains differences between extensions.
Graphical View of Big5 in ICU's Converter Explorer教育部標準字體
Download page of the Taiwan Ministry of Education fonts
文獻處理實驗室
Download pages of the CDP font
Hong Kong Supplementary Character Set Info
Downloadable HKSCS documents & font
香港參考宋體
Download page of Dynalab(華康科技有限公司)'s HKSCS font.
Microsoft's Windows Codepage 950
(Traditional Chinese Big5)

Download page of the OPG font

Download page of the ChinaSea font
Big5 Codeset Overview
{{Character encoding Character sets Encodings of Asian languages Chinese-language computing