How to convert a Unicode character to its ASCII equivalent - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:00:16Z http://stackoverflow.com/feeds/question/138449 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent 3 How to convert a Unicode character to its ASCII equivalent Huppie 2008-09-26T09:25:34Z 2009-11-17T12:03:41Z <p>Here's the problem:</p> <p>In C# I'm getting information from a legacy ACCESS database. .NET converts the content of the database (in the case of this problem a string) to Unicode before handing the content to me.</p> <p>How do I convert this Unicode string back to it's ASCII equivalent?</p> <p><hr> <strong>Edit</strong><br /> Unicode char 710 is indeed MODIFIER LETTER CIRCUMFLEX ACCENT. Here's the problem a bit more precise: </p> <pre> -> (Extended) ASCII character ê (Extended ASCII 136) was inserted in the database. -> Either Access or the reading component in .NET converted this to U+02C6 U+0065 (MODIFIER LETTER CIRCUMFLEX ACCENT + LATIN SMALL LETTER E) -> I need the (Extended) ASCII character 136 back. </pre> <p><hr> Here's what I've tried (I see now why this did not work...):</p> <pre><code>string myInput = Convert.ToString(Convert.ToChar(710)); byte[] asBytes = Encoding.ASCII.GetBytes(myInput); </code></pre> <p>But this does not result in 94 but a byte with value 63...<br /> Here's a new try but it still does not work:</p> <pre><code>byte[] bytes = Encoding.ASCII.GetBytes("ê"); </code></pre> <p><hr> <strong>Soltution</strong><br /> Thanks to both <a href="http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-extended-ascii-equivalent#138579">csgero</a> and <a href="http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-extended-ascii-equivalent#138583">bzlm</a> for pointing in the right direction I solved the problem <a href="http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent#141816">here</a>.</p> http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent/138462#138462 0 Answer by Konrad Rudolph for How to convert a Unicode character to its ASCII equivalent Konrad Rudolph 2008-09-26T09:29:29Z 2008-09-26T09:29:29Z <p>Hmm … I'm not sure which character you mean. The caret (“^”, CIRCUMFLEX ACCENT) has the same code in ASCII and Unicode (U+005E).</p> <p>/EDIT: Damn, my fault. 710 (U+02C6) is actually the MODIFIER LETTER CIRCUMFLEX ACCENT. Unfortunately, this character isn't part of ASCII at all. It might look like the normal caret but it's a different character. Simple conversion won't help here. I'm not sure if .NET supports mapping of similar characters when converting from Unicode. Worth investigating, though.</p> http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent/138478#138478 0 Answer by Chris Jester-Young for How to convert a Unicode character to its ASCII equivalent Chris Jester-Young 2008-09-26T09:33:58Z 2008-09-26T09:33:58Z <p>Try doing a search and replace:</p> <pre><code>myInput.Replace('ˆ', '^'); </code></pre> http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent/138485#138485 0 Answer by Timbo for How to convert a Unicode character to its ASCII equivalent Timbo 2008-09-26T09:36:04Z 2008-09-26T09:36:04Z <p>The value 63 is the question mark, AKA "I am not able to display this character in ASCII".</p> http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent/138579#138579 2 Answer by csgero for How to convert a Unicode character to its ASCII equivalent csgero 2008-09-26T10:05:18Z 2008-09-26T10:05:18Z <p>You cannot use the default ASCII encoding (Encoding.ASCII) here, but must create the encoding with the appropriate code page using Encoding.GetEncoding(...). You might try to use code page 1252, which is a superset of ISO 8859-1.</p> http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent/138583#138583 0 Answer by bzlm for How to convert a Unicode character to its ASCII equivalent bzlm 2008-09-26T10:06:11Z 2008-09-26T10:27:15Z <p>ASCII does not define ê; the number 136 comes from the number for the circumflex in 8-bit encodings such as Windows-1252. </p> <p>Can you verify that a small e with a circumflex (ê) is actually what is supposed to be stored in the Access database in this case? Perhaps U+02C6 U+0065 is the result of a conversion error, where the input is actually an e <em>followed by</em> a circumflex, or something else entirely. Perhaps your Access database has corrupt data in the sense that the designated encoding does not match the contents, in which case the .NET client might incorrectly parse the data (using the wrong decoder).</p> <p>If this error is indeed introduced during the reading from the database, perhaps pasting some code or configuration settings might help.</p> <p>In <a href="http://en.wikipedia.org/wiki/Code_page_437" rel="nofollow">Code page 437</a>, character number 136 is an e with a circumflex.</p> http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent/141816#141816 3 Answer by Huppie for How to convert a Unicode character to its ASCII equivalent Huppie 2008-09-26T20:37:17Z 2008-09-26T20:37:17Z <p>Okay, let's elaborate. Both <a href="http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-extended-ascii-equivalent#138579">csgero</a> and <a href="http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-extended-ascii-equivalent#138583">bzlm</a> pointed in the right direction.</p> <p>Because of blzm's reply I looked up the Windows-1252 page on wiki and found that it's called a codepage. The wikipedia article for <a href="http://en.wikipedia.org/wiki/Codepage" rel="nofollow">Code page</a> which stated the following: </p> <blockquote> <p>No formal standard existed for these ‘<a href="http://en.wikipedia.org/wiki/Extended_ASCII" rel="nofollow">extended character sets</a>’; IBM merely referred to the variants as code pages, as it had always done for variants of EBCDIC encodings.</p> </blockquote> <p>This led me to codepage 437:</p> <blockquote> <p>n ASCII-compatible code pages, the lower 128 characters maintained their standard US-ASCII values, and different pages (or sets of characters) could be made available in the upper 128 characters. DOS computers built for the North American market, for example, used <a href="http://en.wikipedia.org/wiki/Code_page_437" rel="nofollow">code page 437</a>, which included accented characters needed for French, German, and a few other European languages, as well as some graphical line-drawing characters.</p> </blockquote> <p>So, codepage 437 was the codepage I was calling 'extended ASCII', it had the ê as character 136 so I looked up some other chars as well and they seem right.</p> <p>csgero came with the Encoding.GetEncoding() hint, I used it to create the following statement which solves my problem:</p> <pre><code>byte[] bytes = Encoding.GetEncoding(437).GetBytes("ê"); </code></pre> http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent/1748412#1748412 -1 Answer by Ramon Fincken for How to convert a Unicode character to its ASCII equivalent Ramon Fincken 2009-11-17T12:03:41Z 2009-11-17T12:03:41Z <p>Using WordPress functions, read:</p> <p>[solution][howto] Convert special characters to normal chars (é to e) url: <a href="http://www.ramonfincken.com/permalink/topic192.html" rel="nofollow">[solution][howto] Convert special characters to normal chars (é to e)</a></p> <p>which converts txt like: testáén to testaen :)</p>