| Unicode And Html |
Article Index for Unicode |
Shopping Unicode |
Website Links For Unicode |
Information AboutUnicode And Html |
|
The relationship between Unicode and HTML tends to be a difficult topic for many computer professionals, document authors, and Web users alike. The accurate representation of text, in Web Page s, from different Natural Language s and Writing System s is complicated by the details of Character Encoding , Markup Language syntax, and varying levels of support by Web Browser s. HTML DOCUMENT CHARACTERS Web pages are typically HTML or XHTML documents. Both types of documents consist, at a fundamental level, of Character s, which are Grapheme s and grapheme-like units, independent of how they manifest in Computer Storage systems and Network s. An HTML document is a sequence of Unicode characters. More specifically, HTML 4.0 documents are required to consist of characters in the HTML ''document character set'': a character repertoire wherein each character is assigned a unique, non-negative integer ''code point''. This set is defined in the HTML 4.0 (UCS). Like HTML documents, an XHTML document is a sequence of Unicode characters. However, an XHTML document is an XML document, which, while not having an explicit "document character" layer of Abstraction , nevertheless relies upon a similar definition of permissible characters that cover most, but not all, of the Unicode/UCS character definitions. The sets used by HTML and XHTML/XML are slightly different, but these differences have little effect on the average document author. Regardless of whether the document is HTML or XHTML, when stored on a File System or transmitted over a network, the document's characters are ''encoded'' as a sequence of Bit Octet s ('' Byte s'') according to a particular character encoding. This encoding may either be a Unicode Transformation Format , like UTF-8 , that can directly encode any Unicode character, or a legacy encoding, like Windows-1252 , that can't. Numeric character references See Also: Numeric character reference In order to work around the limitations of legacy encodings, HTML is designed such that it is possible to represent characters from the whole of Unicode inside an HTML document by using a number for the Unicode code point, or a Hexadecimal number, in which case it must be prefixed by x. The characters that comprise the numeric character reference are universally representable in every encoding approved for use on the Internet.For example, a Unicode code point like 33865 (decimal), which corresponds to a particular Chinese character, has to be preceded by and followed by ''';''', like this: 葉, which produces this: 葉 (if it doesn't look like a Chinese character, see the special characters note at bottom of article).The support for hexadecimal in this context is more recent, so older browsers might have problems displaying characters referenced with hexadecimal numbers — but they will probably have a problem displaying Unicode characters above code point 255 anyway. To ensure better compatibility with older browsers, it is still a common practice to convert the hexadecimal code point into a decimal value (for example ♠ instead of ♠).Named character entities See Also: character entity reference In HTML, there is a standard set of 252 named ''character entities'' for characters — some common, some obscure — that are either not found in certain character encodings or are markup sensitive in some contexts (for example angle brackets and quotation marks). Although any Unicode character can be referenced by its numeric code point, some HTML document authors prefer to use these named entities instead, where possible, as they are less cryptic and were better supported by early browsers. Character entities can be included in an HTML document via the use of ''entity references'', which take the form &EntityName''';''', where EntityName is the name of the entity. For example, —, much like — or —, represents 2014: the Em Dash character — like this — even if the character encoding used doesn't contain that character.CHARACTER ENCODING DETERMINATION In order to correctly process HTML, a web browser must ascertain which Unicode characters are represented by the encoded form of an HTML document. In order to do this, the web browser must know what encoding was used. When a document is transmitted via a or its close relation Windows-1252 . For a browser from a location where multibyte character encodings are the norm, some form of autodetection is likely to be applied. Because of the legacy of 8-bit text representations in Programming Language s and Operating System s, and the desire to avoid burdening users with needing to understand the nuances of encoding, many text editors used by HTML authors are unable or unwilling to offer a choice of encodings when saving files to disk, and often do not even allow input of characters beyond a very limited range. Consequently, many HTML authors are unaware of encoding issues and may not have any idea what encoding their documents actually use. It is also a common misunderstanding that the encoding declaration effects a change in the actual encoding, whereas it is actually just a label that could be inaccurate. Many HTML documents are served with inaccurate encoding declarations, or no declarations at all. In order to determine the encoding in such cases, many browsers allow the user to manually select one from a list. They may also employ an encoding autodetection algorithm that works in concert with the manual override. The manual override may apply to all documents, or only those for which the encoding cannot be ascertained by looking at declarations and/or byte patterns. The fact that the manual override is present and widely used hinders the adoption of accurate encoding declarations on the Web; therefore the problem is likely to persist. This has been addressed somewhat by XHTML, which, being XML, requires that encoding declarations be accurate and that no workarounds be employed when they're found to be inaccurate. WEB BROWSER SUPPORT Many browsers are only capable of displaying a small subset of the full Unicode repertoire. Here is how your browser displays various Unicode code points: Some web browsers, such as Mozilla Firefox , Opera , and Safari , are able to display multilingual web pages by intelligently choosing a font to display each individual character on the page. They will correctly display any mix of Unicode blocks, as long as appropriate fonts are present in the Operating System . - 04-26 . (for example, only - 04-26 . Otherwise, Explorer will display placeholder squares. For characters not present in a web page's fonts, Web page authors must guess which other appropriate fonts might be present on users' systems, and manually specify them as the preferred choices for each block or range of text containing such characters—Microsoft recommends using CSS to specify a font for each block of text in a different language or script. The characters in the table above haven't been assigned specific fonts, yet most should render correctly if appropriate fonts have been installed. Older browsers, such as Netscape Navigator 4.77, can only display text supported by the current font associated with the character encoding of the page, and may misinterpret numeric character references as being references to code values within the current character encoding, rather than references to Unicode code points. When you are using such a browser, it is unlikely that your computer has all of those fonts, or that the browser can use all available fonts on the same page. As a result, the browser will not display the text in the examples above correctly, though it may display a subset of them. Because they are encoded according to the standard, though, they ''will'' display correctly on any system that is compliant and does have the characters available. Further, those characters given names for use in named entity references are likely to be more commonly available than others. For displaying characters outside the Basic Multilingual Plane , like the Gothic letter faihu in the table above, some systems (like Windows 2000) need manual adjustments of their settings. REFERENCES SEE ALSO EXTERNAL LINKS
|
|
|