Are Unicode and Ascii characters the same?

Ghost picture Ghost · Apr 28, 2012 · Viewed 46.8k times · Source

What exactly are unicode character codes? And how are they different from ascii characters?

Answer

Mark Byers picture Mark Byers · Apr 28, 2012

Unicode is a way to assign unique numbers (called code points) to characters from nearly all languages in active use today, plus many other characters such as mathematical symbols. There are many ways to encode Unicode strings as bytes, such as UTF-8 and UTF-16.

ASCII assigns values only to 128 characters (a-z, A-Z, 0-9, space, some punctuation, and some control characters).

For every character that has an ASCII value, the Unicode code point and the ASCII value of that character are the same.

In most modern applications you should prefer to use Unicode strings rather than ASCII. This will for example allow you to have users with accented characters in their name or address, and to localize your interface to languages other than English.