Did you mean | Travel | Economics | Finance | Marketing | Business | Culture | Geography | History | Life | Mathematics | Science | Society | Technology | New site added |
Unicode is an international standard whose goal is to provide the means by which text of all forms and languages can be encoded for use by computers. The establishment of Unicode has involved an ambitious project to replace existing character encoding schemes, many of which are very limited in size and incompatible with multilingual environments. Unicode has become the largest and most complete character encoding scheme, serving as the dominant such method in the internationalization and localization of computer software. The standard has been implemented in many recent technologies, including XML, the Java programming language, and modern operating systems.
Origin and developmentUnicode has the explicit aim of transcending the limitations of traditional character encodings, such as those defined by the ISO 8859 standard which get wide use in various countries of the world, but remain largely incompatible with each other. Many traditional character encodings share a common problem in that they allow bilingual computer processing (usually using Roman characters and the local language), but not multilingual computer processing (computer processing of arbitrary languages mixed with each other). Unicode, in intent, encodes the underlying characters — graphemes and grapheme-like units — rather than the variant glyphs (renderings) for such characters. In the case of Chinese characters, this sometimes leads to controversies over distinguishing the underlying character from its variant glyphs (see Han unification). In text processing, Unicode takes the role of providing a unique code point — a number, not a glyph — for each character. In other words, Unicode represents a character in an abstract way, and leaves the visual rendering (size, shape, font or style) to other software, such as a web browser or word processor. This simple aim becomes complicated, however, by concessions made by Unicode's designers, in the hope of encouraging a more rapid adoption of Unicode. The first 256 code points were made identical to the content of ISO 8859-1, to make it trivial to convert existing western text. A lot of essentially identical characters were encoded multiple times at different code points to preserve distinctions used by legacy encodings and therefore allow conversion from those encodings to Unicode (and back) without losing any information. For example, the "fullwidth forms" section of code points encompasses a full Latin alphabet that is separate from the main Latin alphabet section. In CJK fonts, these characters are rendered at the same width as CJK ideographs rather than half the width. For other examples, see Duplicate characters in Unicode. Also, whilst Unicode allows for combining characters, it also contains precomposed versions of most letter/diacritic combinations in normal use. These make conversion to and from legacy encodings simpler and mean applications can use Unicode as an internal text format without having to implement combining characters. For example é can be represented in Unicode as U+0065 (Latin small letter e) followed by U+0301 (combining acute) but it can also be represented as the precomposed character) U+00E9 (Latin small letter e with acute). The Unicode standard also includes a number of related items, such as character properties, text normalisation forms, and bidirectional display order (for the correct display of text containing both right-to-left scripts, such as Arabic or Hebrew, and left-to-right scripts). Scripts coveredUnicode covers almost all scripts (writing systems) in current use today. That includes:
Unicode has added further scripts and will cover even more, including historic scripts less commonly used as well as extinct ones for academic purposes:
Further additions of characters to the already-encoded scripts, as well as symbols, in particular for mathematics and music (in the form of notes and rhythmic symbols), also occur. The Unicode Roadmap lists scripts not yet in Unicode with tentative assignments to code blocks. Invented scripts, most of which do not qualify for inclusion in Unicode due to lack of real-world usage, are listed in the ConScript Unicode Registry, along with unofficial but widely-used Private Use Area code assignments. Similarly, many medieval letter variants and ligatures not in Unicode are encoded in the Medieval Unicode Font Initiative. TriviaIn 1997 Michael Everson made a proposal to encode the characters of the fictional Klingon language in Plane 1 of ISO/IEC 10646-2. The Unicode Consortium rejected this proposal in 2001 as "inappropriate for encoding" — not because of any technical inadequacy, but because users of Klingon normally read, write and exchange data in Latin transliteration. Now that some enthusiasts are blogging in tlhIngan piQad using newly available fonts and keyboard layouts, the possibility of reapplying to ISO has been raised. Proposals suggested the inclusion of the elvish scripts Tengwar and Cirth from J. R. R. Tolkien's fictional Middle-earth setting in Plane 1 in 1993. The Consortium withdrew the draft to incorporate changes suggested by Tolkienists, and as of 2005 it remains under consideration. Both Klingon and the Tolkien scripts have assignments in the ConScript Unicode Registry. Mapping and encodingsStandardThe Unicode Consortium, based in California, develops the Unicode standard. Any company or individual willing to pay the membership dues may join this organization. Members include virtually all of the main computer software and hardware companies with any interest in text-processing standards, such as Apple Computer, Microsoft, IBM, Xerox, HP, Adobe Systems and many others. The Consortium first published The Unicode Standard (ISBN 0321185781) in 1991, and continues to develop standards based on that original work. Unicode developed in conjunction with the International Organization for Standardization, and it shares its character repertoire with ISO/IEC 10646. Unicode and ISO/IEC 10646 function equivalently as character encodings, but The Unicode Standard contains much more information for implementers, covering - in depth - topics such as bitwise encoding, collation, and rendering. The Unicode Standard enumerates a multitude of character properties, including those needed for supporting bidirectional text. The two standards do use slightly different terminology. When writing about a Unicode character, it is normal to write "U+" followed by a hexadecimal number indicating the character's code point. For code points in the BMP four digits are used; for code points outside the BMP five or six digits are used as required. Older versions of the standard used similar notations but with slightly different rules, for example, in Unicode 3.0 U- followed by eight digits whilst U+ with four digits was used for UTF-16 code units. Unicode revision history
Storage, transfer, and processingSo far, Unicode has appeared simply as a means to assign a unique number to each character used by humans in written language. The storage of these numbers in text processing comprises another topic; problems result from the fact that much software written in the Western world deals with 8-bit character encodings only, with Unicode support added only slowly in recent years. Similarly, in representing the scripts of Asia, the double-byte character encodings cannot even in principle encode more than 65,536 characters, and in practice the architectures chosen impose much lower limits. Such limits do not suffice for the needs of scholars of the Chinese language alone. The internal logic of much 8-bit legacy software typically permits only 8 bits for each character, making it impossible to use more than 256 code points without special processing. Sixteen-bit software can support only some tens of thousands of characters. Unicode, on the other hand, has already defined more than 90,000 encoded characters. Systems designers have therefore suggested several mechanisms for implementing Unicode; which one implementers choose depends on available storage space, source code compatibility, and interoperability with other systems. Unicode defines two mapping methods:
The encodings include:
The numbers in the names of the encodings indicate the number of bits in one code value (for UTF encodings) or the number of bytes per code value (for UCS) encodings. In UTF-32 and UCS-4, one 32-bit code value serves as a fairly direct representation of any character's code point (although the endianness, which varies across different platforms, affects how the code value actually manifests as a bit sequence). In the other cases, each code point may be represented by a variable number of code values. UTF-8 uses one to four bytes per code point and, being relatively compact (for Latin script) and ASCII-compatible, provides the de facto standard encoding for interchange of Unicode text. UTF-16, meanwhile, which is usually 16 bits per code point—the same as UCS-2— but sometimes 32, is used by many APIs. Some of this is for historical reasons (they date from the days when Unicode was UCS-2 based) and also due to its relative simplicity when working with 16-bit character data storage. UCS-4 and UTF-32 are not commonly used, since no more than 21 of the 32 bits allocated per code point would ever be used, but it is becoming increasingly common for programming language implementations to use UCS-4 for their internal storage of encoded text. The UCS-2 and UTF-16 encodings specify the Unicode byte order mark (BOM) for use at the beginnings of text files. Some software developers have adopted it for other encodings, including UTF-8, which does not need an indication of byte order. In this case it attempts to mark the file as containing Unicode text. The BOM, code point GB18030 is another encoding form for Unicode, but from the Standardization Administration of China.
Ready-made versus composite charactersUnicode includes a mechanism for modifying character shape and so greatly extending the supported glyph repertoire. This covers the use of combining diacritical marks. They get inserted after the main character (one can stack several combining diacritics over the same character). However, for reasons of compatibility, Unicode also includes a large quantity of pre-composed characters. So in many cases, users have many ways of encoding the same character. To deal with this, Unicode provides the mechanism of canonical equivalence. A similar situation exists with Hangul. Unicode provides the mechanism for composing Hangul syllables with Hangul Jamo. However, it also provides the precomposed Hangul syllables (11,172 of them). The CJK ideographs currently have codes only for their precomposed form. Still, most of those ideographs evidently comprise simpler elements, so in principle Unicode could decompose them just as happens with Hangul. This would greatly reduce the number of required codepoints, while allowing the display of virtually every conceivable ideograph (and so doing away with all problems of the Han unification). A similar idea covers some input methods, such as Cangjie and Wubi. However, attempts to do this for character encoding have stumbled over the fact that ideographs do not actually decompose as simply or as regularly as it seems they should. Combining marks, like the complex script-shaping required to properly render Arabic text and many other scripts, usually depend on complex font technologies, like OpenType (by Adobe and Microsoft), Graphite (by SIL International), and AAT (by Apple), by which a font designer includes instructions in a font, telling software how to properly output different character sequences. Fixed-width fonts sometimes employ another method: placing the combining mark's glyph before its own left sidebearing; this method, however, only works for some diacritics and stacking will not occur properly. As of 2004, most software still cannot reliably handle many features not supported by older font formats, so combining characters generally will not work correctly. Theoretically, ḗ (precomposed e with macron and acute above) and ḗ (e followed by the combining macron above and combining acute above) have an identical appearance, both giving an e with macron and acute accent, but in practice, their appearances can vary greatly across software applications. Also underdots, as needed in Indic Romanization, will often get placed incorrectly or worse. Sample:
Of course, such problems in fact show not a weakness in Unicode itself, but only uncover weaknesses in rendering technology and fonts. Also note the existence of precomposed glyphs for many accented characters, e.g. ṃ - ṇ - ḷ. IssuesSome people, mostly in Japan, oppose Unicode in general, claiming technical limitations and political problems in process. People working on the Unicode standard regard such claims simply as misunderstandings of the Unicode standard and of the process by which it has evolved. The most common mistake, according to this view, involves confusion between abstract characters and their highly-variable visual forms (glyphs). On the other hand, whereas Chinese can readily read most types of glyphs used by Japanese or Koreans, Japanese often can recognize only a particular variant. Some have decried Unicode as a plot against Asian cultures perpetrated by Westerners with no understanding of the characters as used in Chinese, Korean, and Japanese, in spite of the presence of a majority of experts from all three countries in the Ideographic Rapporteur Group (IRG). The IRG advises the consortium and ISO on additions to the repertoire and on Han unification, the identification of forms in the three languages which will one can treat as stylistic variations of the same historical character. Han unification has become one of the most controversial aspects of Unicode. Unicode is criticized for failing to allow for older and alternate forms of kanji, which, it is said, complicates the processing of ancient Japanese and uncommon Japanese names, although it follows the recommendations of Japanese scholars of the language and of the Japanese government. There have been several attempts to create an alternative to Unicode. 1 Among them are TRON (although it is not widely adopted in Japan, some, particularly those who need to handle historical Japanese text, favor this), and UTF-2000. It is true that many older forms were not included in early versions of the Unicode standard, but Unicode 4.0 contains more than 90,000 Han characters, far more than any dictionary or any other standard, and work continues on adding characters from the early literature of China, Korea, and Japan. Thai language support has been criticized for its illogical ordering of Thai characters. This complication is due to Unicode inheriting the Thai Industrial Standard 620, which worked in the same way. This ordering problem complicates the Unicode collation process. 2 Opponents of Unicode sometimes claim even now that it cannot handle more than 65,535 characters, a limitation that was removed in Unicode 2.0. Unicode in useOperating systemsDespite technical problems and limitations and criticism on process, Unicode has emerged as the dominant encoding scheme. Windows NT and its descendants Windows 2000 and Windows XP make extensive use of UTF-16 as an internal representation of text. Unix-like operating systems such as GNU/Linux, Plan 9, BSD and Mac OS X have adopted UTF-8 as the basis of representation of multilingual text.
MIME defines two different mechanisms for encoding non-ASCII characters in e-mail, depending on whether the characters are in e-mail headers such as the "Subject:" or in the text body of the message. In both cases, the original character set is identified as well as a transfer encoding. For e-mail transmission of Unicode the UTF-8 character set and the Base64 transfer encoding are recommended. The details of the two different mechanisms are specified in the MIME standards and are generally hidden from users of e-mail software. The adoption of Unicode in e-mail has been very slow. Most East-Asian text is still encoded in a local encoding such as Shift-JIS, and many commonly used e-mail programs still cannot handle Unicode data correctly, if they have any support at all. This situation is not expected to change in the foreseeable future. WebRecent web browsers display web pages using Unicode if an appropriate font is installed (see Unicode and HTML). Although syntax rules may affect the order in which characters are allowed to appear, both HTML 4.0 and XML 1.0 documents, by definition, comprise characters from most of the Unicode code points, with the exception of:
These characters manifest either directly as bytes according to document's encoding, if the encoding supports them, or users may write them as numeric character references based on the character's Unicode code point, as long as the document's encoding supports the digits and symbols required to write the references (all encodings approved for use on the Internet do). For example, the references FontsFree and retail fonts based on Unicode occur commonly, since first TrueType and now OpenType support Unicode. These font formats map Unicode code points to glyphs. Thousands of fonts exist on the market, but fewer than a dozen fonts — sometimes described as "pan-Unicode" fonts — attempt to support the majority of Unicode's character repertoire. Instead, Unicode-based fonts typically focus on supporting only basic ASCII and particular scripts or sets of characters or symbols. Several reasons justify this approach: applications and documents rarely need to render characters from more than one or two writing systems; fonts tend to demand resources in computing environments; and operating systems and applications show increasing intelligence in regard to obtaining glyph information from separate font files as needed. Furthermore, designing a consistent set of rendering instructions for tens of thousands of glyphs constitutes a monumental task; such a venture passes the point of diminishing returns for most typefaces. Several subsets of Unicode are standardized: Microsoft Windows since Windows NT 4.0 supports WGL-4 with 652 characters, which is considered to support all Latin, Greek and Cyrillic-based languages. Other standardized subsets of Unicode include MES-1 (335 characters) and MES-2 (1062 characters) (CWA 13873:2000, Multilingual European Subsets in ISO/IEC 10646-1). Rendering software which cannot process a Unicode character appropriately most often display it as only an open rectangle, or the Unicode "Replacement Character" (U+FFFD, �), to indicate the position of the unrecognized character. Some systems have made attempts to provide more information about such characters. The Apple LastResort font will display a substitute glyph indicating the Unicode range of the character and the SIL Unicode fallback font will display a box showing the hexadecimal scalar value of the character. Multilingual text-rendering engines
Input methodsWindows rich-text ing controls as used in Wordpad support entering Unicode characters by pressing Apple Macintosh users have a similar feature with an input method called 'Unicode Hex Input', in Mac OS X and in Mac OS 8.5 and later: hold down the Option key, and type the four-hex-digit Unicode code point. Inputting code points above U+FFFF is done by entering surrogate pairs; the software will convert each pair into a single character automatically. Mac OS X (version 10.2 and newer) also has a 'Character Palette', which allows users to visually select any Unicode character from a table organized numerically, by Unicode block, or by a selected font's available characters. The 'Unicode Hex Input' method must be activated in the International System Preferences in Mac OS X or the 'Keyboard' Control Panel in Mac OS 8.5 and later. Once activated, 'Unicode Hex Input' must also be selected in the Keyboard menu (designated by the flag icon) before a Unicode code point can be entered. Gnome2 follows ISO 14755. Hold down Ctrl and Shift and enter the hexadecimal Unicode value. At the X Input Method or GTK Input Module level, the input method or SCIM provides a “raw code” (內碼輸入) input method to allow the user to enter the 4-digit hexadecimal Unicode value. The Opera web browser in version 7.5 and over allows users to enter any Unicode character directly into a text field by typing its hexadecimal code, selecting it, and pressing In the Vim text or, Unicode characters can be entered by pressing CTRL-V and then entering a key combination. For more information, type " WordPad and Word 2002/2003 for Windows additionally allow for entering Unicode characters by typing the hexadecimal code point, for example 014B for ŋ, and then pressing See alsoExternal links
What does Unicode mean ? Search with Google !Article on Unicode, category, different spelling or sense |
|
Did you mean: Culture | Geography | History | Life | Mathematics | Science | Society | Technology Economy finance business money economy: Economics | Finance | Marketing | Business | Money | Real Estate | Insurance | Retirement | Microeconomics | Economics Top Search: Kazaa | Sex | Pornography | Games | MySpace | Google | Ebay | Paris Hilton | Carmen Electra | Jessica Simpson | Eminem | MapQuest | Dogs | Jokes | Obituaries | MSN Messenger | Splogs | Ringtones | Casino | Poker | Gambling | Lyrics | Anime | Continents and countries in the world: Japan | United Kingdom | Canada | France | Amsterdam | Monaco | Spain | Capitals Cities | Continents | World | Americas | North America | South America | Europe | Africa | Eurasia | Oceania | Antarctica | Asia | Australia A web travel guide for your holidays, hotel and plane tickets: Travel guide and holidays French Version, guide de voyage dans le monde: Voyage et vacances Visit partners of Did you mean Travel: Partners Site Map articles begining from 0 to 9 and A to Z: Site Map 0 to A | Site Map B to C | Site Map D to Z Cours d'anglais, cours de langues pour debutant: Cours d'anglais Annuaire france regions et tourisme: Annuaire OuiX Sexe sur AbSexe, videos porno et annuaire sexe: Ab Sexe Url Rewriting by Atuvu Referencement This work is licensed under a GNU Free Documentation License. Texts derived from WikiPedia Unicode ©2006 Did you mean Copyright Notice Page Unicode cached on Saturday 30th of August 2008 04:37:56 PM |