- Wide character
-
A wide character is a computer character datatype that generally has a size greater than the traditional 8-bit character. The increased datatype size allows for the use of larger coded character sets.
Contents
History
During the 1960s, mainframe and mini-computer manufacturers began to standardize around the 8-bit byte as their smallest datatype. Meanwhile, the 7-bit ASCII character set became the industry standard method for encoding alphanumeric characters for teletype machines and computer terminals. As a result, the 8-bit byte became the de facto datatype for computer systems storing ASCII characters in memory.
Later, computer manufacturers began to make use of the spare bit to extend the ASCII character set beyond its limited set of English alphabet characters. 8-bit extensions such as IBM code page 37, PETSCII and ISO 8859 became commonplace, offering terminal support for Greek, Cyrillic, and many others. However, such extensions were still limited in that they were region specific and often could not be used in tandem. Special conversion routines had to be used to convert from one character set to another, often resulting in destructive translation when no equivalent character existed in the target set.
In 1989, the International Organization for Standardization began work on the Universal Character Set (UCS), a multilingual character set that could be encoded using either a 16-bit (2-byte) or 32-bit (4-byte) value. These larger values required the use of a datatype larger than 8-bits to store the new character values in memory. Thus the term wide character was used to differentiate them from traditional 8-bit character datatypes.
Relation to UCS and Unicode
A wide character refers to the size of the datatype in memory. It does not state how each value in a character set is defined. Those values are instead defined using character sets, with UCS and Unicode simply being two common character sets that contain more characters than an 8-bit value would allow.
Relation to multibyte characters
Just as earlier data transmission systems suffered from the lack of an 8-bit clean data path, modern transmission systems often lack support for 16-bit or 32-bit data paths for character data. This has led to character encoding systems such as UTF-8 that can use multiple bytes to encode a value that is too large for a single 8-bit symbol.
Size of a wide character
The Microsoft Windows application programming interfaces Win32 and Win64, as well as the Java and .Net Framework platforms, require that wide character variables be defined as 16-bit values, and that characters be encoded using UTF-16 (due to former use of UCS-2), while modern Unix-like systems generally require 32-bit values encoded using UTF-32.
Programming specifics
C/C++
The ISO/IEC C programming language, which generally uses the datatype
wchar_t
for wide characters, originally defined that wide characters should be 16-bit values under C90 due to historical compatibility reasons. C and C++ compilers that comply with the 10646-1:2000 Unicode standard generally assume 32-bit values. However, the ISO/IEC 10646:2003 Unicode standard 4.0 says that:- "ANSI/ISO C leaves the semantics of the wide character set to the specific implementation but requires that the characters from the portable C execution set correspond to their wide character equivalents by zero extension."
and that
- "The width of
wchar_t
is compiler-specific and can be as small as 8 bits. Consequently, programs that need to be portable across any C or C++ compiler should not usewchar_t
for storing Unicode text. Thewchar_t
type is intended for storing compiler-defined wide characters, which may be Unicode characters in some compilers."
In ANSI C library header files,
wchar.h
andwctype.h
deal with the wide characters. Additional functions can also be found instdio.h
andstdlib.h
.Wide characters and long strings must use the prefix L when defined in quotes. Some examples are:
#include <stdio.h> #include <wchar.h> #include <stdlib.h> #include <locale.h> int main() { setlocale(LC_ALL,""); wchar_t myChar1 = L'Ω'; wchar_t myChar2 = 0x2126; // hexadecimal encoding of char Ω using UTF-16 wchar_t myString1[] = L"♠♣♥♦"; wchar_t myString2[] = { 0x2660, 0x2661, 0x2662, 0x2663, 0x0000 }; // hex encoding of null-terminated string ♠♣♥♦ using UTF-16 wprintf(L"This is char: %lc \n",myChar1); wprintf(L"This is char: %lc \n",myChar2); wprintf(L"This is a long string: %ls \n",myString1); wprintf(L"This is a long string: %ls \n",myString2); }
Python
According to Python's documentation, the language sometimes uses
wchar_t
as the basis for its character typePy_UNICODE
. It depends on whetherwchar_t
is "compatible with the chosen Python Unicode build variant" on that system.[1]References
- ^ http://docs.python.org/c-api/unicode.html accessed 2009 12 19
External links
- The Unicode Standard, Version 4.0 - online edition
- C Wide Character Functions @ Java2S
- Java Unicode Functions @ Java2S
- Multibyte (3) Man Page @ FreeBSD.org
- Multibyte and Wide Characters @ Microsoft Developer Network
- Windows Character Sets @ Microsoft Developer Network
- Unicode and Character Set Programming Reference @ Microsoft Developer Network
- STR33-C. Size wide character strings correctly @ Secure Coding
Categories:- Character encoding
- C programming language
- C++
Wikimedia Foundation. 2010.