This section providing information on character set encoding options for Chinese Web pages: UTF-8, GB, and Big5
By default, Web servers and Web browsers use ISO-8859-1 (Latin1) encoding to process Web pages. ISO-8859-1 is also the default encoding for many
desktop software and is good for many western languages. But ISO-8859-1 is not good enough to support Chinese characters.
To support Chinese characters in Web pages, we have 3 options:
1. Create and serve the static page with Chinese text with UTF-8 encoding. Good for both simplified and traditional Chinese characters.
The Web page must contain a <meta> tag to info the browser to use UTF-8 encoding:
2. Create and serve the static page with Chinese text with GB encoding. Mainly for simplified Chinese characters.
The Web page must contain a <meta> tag to info the browser to use GB encoding:
3. Create and serve the static page with Chinese text with Big5 encoding. Mainly for traditional Chinese characters.
The Web page must contain a <meta> tag to info the browser to use Big5 encoding:
I strongly suggest you to use UTF-8 encoding for your Chinese static text pages. If you have old Web pages written in GB of Big5 encoding,
you can easily convert them into UTF-8 encoding.