Unicode, UTF, ASCII, ANSI format differences - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T16:30:09Zhttp://stackoverflow.com/feeds/question/700187http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/700187/unicode-utf-ascii-ansi-format-differences3Unicode, UTF, ASCII, ANSI format differences BALAMURUGAN2009-03-31T06:02:25Z2009-03-31T08:00:22Z
<p>whatis the difference between Unicode, UTF8, UTF7,UTF16,UTF32,ASCII, ANSI code format of encoding in ASP.net</p>
<p>In what these are helpful for programmers.</p>
http://stackoverflow.com/questions/700187/unicode-utf-ascii-ansi-format-differences/700204#7002041Answer by Tomalak for Unicode, UTF, ASCII, ANSI format differences Tomalak2009-03-31T06:10:06Z2009-03-31T06:10:06Z<p>Some reading to get you started on character encodings: <a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">Joel on Software:
The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)</a></p>
<p>By the way - ASP.NET has nothing to do with it. Encodings are universal.</p>
http://stackoverflow.com/questions/700187/unicode-utf-ascii-ansi-format-differences/700221#7002215Answer by Jon Skeet for Unicode, UTF, ASCII, ANSI format differences Jon Skeet2009-03-31T06:15:04Z2009-03-31T07:48:03Z<p>Going down your list:</p>
<ul>
<li>"Unicode encoding" is more properly known as <a href="http://en.wikipedia.org/wiki/UTF-16" rel="nofollow">UTF-16</a>: 2 bytes per "code point". This is the native format of strings in .NET. Values outside the <a href="http://en.wikipedia.org/wiki/Basic%5FMultilingual%5FPlane" rel="nofollow">Basic Multilingual Plane</a> (BMP) are encoded as surrogate pairs. (These are relatively rarely used - which is a good job, as very few developers get them right, I suspect. I very much doubt that I do.) "Unicode" is really the character set - it's unfortunate that the term is also used as a synonym for UTF-16 in .NET and various Windows applications.</li>
<li><a href="http://en.wikipedia.org/wiki/UTF-8" rel="nofollow">UTF-8</a>: Variable length encoding, 1-4 bytes covers every current character. ASCII values are encoded as ASCII.</li>
<li><a href="http://en.wikipedia.org/wiki/UTF-7" rel="nofollow">UTF-7</a>: Usually used for mail encoding. Chances are if you think you need it and you're not doing mail, you're wrong. (That's just my experience of people posting in newsgroups etc - outside mail, it's really not widely used at all.)</li>
<li><a href="http://en.wikipedia.org/wiki/UTF-32" rel="nofollow">UTF-32</a>: Fixed width encoding using 4 bytes per code point. This isn't very efficient, but makes life easier outside the BMP. I have a .NET <code>Utf32String</code> class as part of my <a href="http://pobox.com/~skeet/csharp/miscutil" rel="nofollow">MiscUtil</a> library, should you ever want it. (It's not been very thoroughly tested, mind you.)</li>
<li><a href="http://en.wikipedia.org/wiki/ASCII" rel="nofollow">ASCII</a>: Single byte encoding only using the bottom 7 bits. (Unicode 0-127.) No accents etc.</li>
<li>ANSI: There's no one fixed ANSI encoding - there are lots of them. Usually when people say "ANSI" they mean "the default code page for my system" which is obtained via <a href="http://msdn.microsoft.com/en-us/library/system.text.encoding.default.aspx" rel="nofollow">Encoding.Default</a>, and is often <a href="http://en.wikipedia.org/wiki/Windows-1252" rel="nofollow">Windows-1252</a>.</li>
</ul>
<p>There's more on <a href="http://pobox.com/~skeet/csharp/unicode.html" rel="nofollow">my Unicode page</a> and <a href="http://pobox.com/~skeet/csharp/debuggingunicode.html" rel="nofollow">tips for debugging Unicode problems</a>.</p>
<p>The other big resource of code is <a href="http://unicode.org" rel="nofollow">unicode.org</a> which contains more information than you'll ever be able to work your way through - possibly the most useful bit is the <a href="http://unicode.org/charts" rel="nofollow">code charts</a>.</p>