widecharacter
Widecharacter refers to a character representation wider than the traditional single-byte unit used by ASCII. In computing, it commonly denotes a type and related facilities intended to handle extended character sets such as Unicode. In the C and C++ languages, a built-in type named wchar_t represents wide characters, and a set of library functions in the wchar.h family provides operations for wide-character strings and I/O. A wide character is typically designed to hold a single Unicode code point, though the exact representation depends on the platform.
The size and encoding of wchar_t are implementation-defined. On many Unix-like systems it is 32 bits (representing
Conversion between wide-character representations and multibyte encodings is supported by standard library facilities such as mbstowcs,
In contemporary practice, the use of wide characters is influenced by cross-platform portability concerns. UTF-8 encoded