Wednesday, June 10, 2015

Unicode v/s UTF-8

http://www.w3schools.com/charsets/ref_html_utf8.asp

HTML Unicode (UTF-8) Reference


The Unicode Consortium

The Unicode Consortium develops the Unicode Standard. Their goal is to replace the existing character sets with its standard Unicode Transformation Format (UTF).
The Unicode Standard has become a success and is implemented in HTML, XML, Java, JavaScript, E-mail, ASP, PHP, etc. The Unicode standard is also supported in many operating systems and all modern browsers.
The Unicode Consortium cooperates with the leading standards development organizations, like ISO, W3C, and ECMA.

The Unicode Character Sets

Unicode can be implemented by different character sets. The most commonly used encodings are UTF-8 and UTF-16:
Character-setDescription
UTF-8A character in UTF8 can be from 1 to 4 bytes long. UTF-8 can represent any character in the Unicode standard. UTF-8 is backwards compatible with ASCII. UTF-8 is the preferred encoding for e-mail and web pages
UTF-1616-bit Unicode Transformation Format is a variable-length character encoding for Unicode, capable of encoding the entire Unicode repertoire. UTF-16 is used in major operating systems and environments, like Microsoft Windows, Java and .NET.
Tip: The first 128 characters of Unicode (which correspond one-to-one with ASCII) are encoded using a single octet with the same binary value as ASCII, making valid ASCII text valid UTF-8-encoded Unicode as well.
Note HTML 4 supports UTF-8. HTML 5 supports both UTF-8 and UTF-16!

The HTML5 Standard: Unicode UTF-8

Because the character sets in ISO-8859 was limited in size, and not compatible in multilingual environments, the Unicode Consortium developed the Unicode Standard.
The Unicode Standard covers (almost) all the characters, punctuations, and symbols in the world.
Unicode enables processing, storage, and transport of text independent of platform and language.
The default character encoding in HTML-5 is UTF-8.
If an HTML5 web page uses a different character set than UTF-8, it should be specified in the <meta> tag like:

Example

<meta charset="ISO-8859-1">

The Difference Between Unicode and UTF-8

Unicode is a character set. UTF-8 is encoding.
Unicode is a list of characters with unique numbers (code points). A = 41, B = 42, C = 43, and so on.
This list of numbers represent the string "hello": 104 101 108 108 111
Encoding is how these numbers are translated into binary numbers to be stored in a computer:
UTF-8 encoding will store"hello" like this (binary): 01101000 01100101 01101100 01101100  01101111
NoteEncoding translates numbers into binary. Character sets translates characters to numbers.

HTML5 UTF-8 Character Codes

Below is a list of some of the UTF-8 character codes supported by HTML5:
Character codesDecimalHexadecimal
C0 Controls and Basic Latin0-1270000-007F
C1 Controls and Latin-1 Supplement128-2550080-00FF
Latin Extended-A256-3830100-017F
Latin Extended-B384-5910180-024F
Spacing Modifiers688-76702B0-02FF
Diacritical Marks768-8790300-036F
Greek and Coptic880-10230370-03FF
Cyrillic Basic1024-12790400-04FF
Cyrillic Supplement1280-13270500-052F
General Punctuation8192-83032000-206F
Currency Symbols8352-839920A0-20CF
Letterlike Symbols8448-85272100-214F
Arrows8592-87032190-21FF
Mathematical Operators8704-89592200-22FF
Box Drawings9472-95992500-257F
Block Elements9600-96312580-259F
Geometric Shapes9632-972725A0-25FF
Miscellaneous Symbols9728-99832600-26FF
Dingbats9984-101752700-27BF

No comments:

Post a Comment