Entry
What is Unicode?
Jan 7th, 2006 12:37
Knud van Eeden,
----------------------------------------------------------------------
--- Knud van Eeden --- 07 January 2006 - 07:05 pm --------------------
What is Unicode?
---
The aim and the idea is to collect the characters of ideally all the
languages of the world and assign each of this characters a unique
number (in order to process text using this characters further in e.g.
computer software).
---
A standardized way of assigning this characters to unique numbers is
the Unicode table, which assigns 65536 characters to a unique number
between 1 and 65536
(because of they chose to use totally 2 bytes per character,
thus 2^16 - 1 or 65536 different
possibilities)
===
To recognize you are dealing with a Unicode number,
you write
U+<your unique hexadecimal unicode number for that character>
===
Note
This is similar to using
0x...
to recognize you are dealing with a hexadecimal
number in e.g. C++
---
---
Internet: see also:
---
Unicode: Can you give an overview of links?
http://www.faqts.com/knowledge_base/view.phtml/aid/38864/fid/1852
----------------------------------------------------------------------