How can I convert unicode characters to ascii codes in delphi 7? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T22:31:01Z http://stackoverflow.com/feeds/question/305162 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/305162/how-can-i-convert-unicode-characters-to-ascii-codes-in-delphi-7 1 How can I convert unicode characters to ascii codes in delphi 7? Unkwntech 2008-11-20T12:38:40Z 2009-07-02T12:00:00Z <p>Title says it all.</p> <p>Edit: Yes we're talking about asci codes. My appologies I'm not the delphi dev here.</p> http://stackoverflow.com/questions/305162/how-can-i-convert-unicode-characters-to-ascii-codes-in-delphi-7/305174#305174 0 Answer by Gamecat for How can I convert unicode characters to ascii codes in delphi 7? Gamecat 2008-11-20T12:42:09Z 2008-11-20T12:42:09Z <p>It depends what your definition of conversion is. If you want to map the 127 lowest characters to the Unicode equivalent, you can use an explicit cast. But this creates garbage if the string contains higher characters.</p> <p>If you want mappings like ë -> e and û -> u, you can write your own code. But be aware that there are always characters that can't be converted.</p> http://stackoverflow.com/questions/305162/how-can-i-convert-unicode-characters-to-ascii-codes-in-delphi-7/306883#306883 0 Answer by Steve for How can I convert unicode characters to ascii codes in delphi 7? Steve 2008-11-20T21:20:21Z 2008-11-21T11:05:18Z <p>As an example, the letter A is represented in unicode as U+0041 and in ansi as just 41. So converting that would be pretty simple, but you must find out how the unicode character is encoded. The most common are UTF-16 and UTF-8. UTF 16, is basically two bytes per character, but even that is an oversimplification, as a character may have more bytes. UTF-8 sounds as if it means 1 byte per character but can be 2 or 3. To further complicate matters, UTF-16 can be little endian or big endian. (U+0041 or U+4100). </p> <p>Where your question makes no sense is if you wanted to for example convert the arabic letter ain U+0639 to ansi on an English locale. You can't.</p> http://stackoverflow.com/questions/305162/how-can-i-convert-unicode-characters-to-ascii-codes-in-delphi-7/306964#306964 0 Answer by Rob Kennedy for How can I convert unicode characters to ascii codes in delphi 7? Rob Kennedy 2008-11-20T21:45:48Z 2008-11-20T21:45:48Z <p>"ASCII" is the name of a specific mapping of characters to numbers, but some people say "ASCII code" when they don't really mean ASCII at all; they just want the numeric value of a character, whatever mapping is in effect at the time. Does that description apply to you?</p> <p>If so, then you can use the <code>Ord</code> standard function to get the Unicode code-point value of whatever Unicode character you have.</p> <pre><code>var wc: WideChar; ws: WideString; x: Word; x := Ord(wc); x := Ord(ws[1]); </code></pre> <p>If you really meant ASCII, though, then you'll have to be more specific about what sort of conversion you have in mind.</p> http://stackoverflow.com/questions/305162/how-can-i-convert-unicode-characters-to-ascii-codes-in-delphi-7/307475#307475 1 Answer by lkessler for How can I convert unicode characters to ascii codes in delphi 7? lkessler 2008-11-21T01:04:10Z 2008-11-21T01:04:10Z <p>For Delphi 7, I'd get <a href="http://www.soft-gems.net/index.php?option=com_content&amp;task=view&amp;id=23&amp;Itemid=33" rel="nofollow">the free Unicode Library by Mike Lischke</a> who is the author of Virtual Treeview.</p> <p>The libary includes a lot of conversion functions to go to and from Unicode, so you can use the ones that make most sense in your application.</p> <p><a href="http://stackoverflow.com/questions/305016/what-are-major-incentives-to-upgrade-to-d2009-unicode-excluded#307419">Or you can upgrade to Delphi 2009</a> which has built-in encoding routines, and its own library of conversion functions.</p> http://stackoverflow.com/questions/305162/how-can-i-convert-unicode-characters-to-ascii-codes-in-delphi-7/308485#308485 0 Answer by Constantin for How can I convert unicode characters to ascii codes in delphi 7? Constantin 2008-11-21T11:28:24Z 2008-11-21T11:28:24Z <p>See related questions on converting from Unicode to ASCII:</p> <ul> <li><a href="http://stackoverflow.com/questions/285228/how-to-convert-utf-8-to-us-ascii-in-java">How to convert UTF-8 to US-Ascii in Java</a></li> <li><a href="http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent">How to convert a Unicode character to its ASCII equivalent</a></li> <li><a href="http://stackoverflow.com/questions/175240/how-do-i-convert-a-files-format-from-unicode-to-ascii-using-python">How do I convert a file’s format from Unicode to ASCII using Python?</a></li> </ul> <p>In general, character set of hundreds thousands entries cannot be converted to character set of 127 entries without some loss of information or encoding scheme.</p> http://stackoverflow.com/questions/305162/how-can-i-convert-unicode-characters-to-ascii-codes-in-delphi-7/311744#311744 0 Answer by Osman for How can I convert unicode characters to ascii codes in delphi 7? Osman 2008-11-22T20:31:49Z 2008-11-22T20:31:49Z <p>You can use the function in <a href="http://swissdelphicenter.ch/en/showcode.php?id=1692" rel="nofollow">http://swissdelphicenter.ch/en/showcode.php?id=1692</a> <br> It converts Unicode string to Ansi string using specified code page. <br>If you want convert using default system codepage (defined in regional options as non-unicode codepage) you can do it simply like following:</p> <pre><code>var ws: widestring; s: string; begin s:=string(ws) </code></pre> http://stackoverflow.com/questions/305162/how-can-i-convert-unicode-characters-to-ascii-codes-in-delphi-7/902999#902999 0 Answer by eed3si9n for How can I convert unicode characters to ascii codes in delphi 7? eed3si9n 2009-05-24T03:19:19Z 2009-05-24T03:19:19Z <p>Let's get a few things straight. Character set (charset) and character encodings are two related but different concepts. A character set is an abstract list of characters with some sort of integer character code associated. Then there are character encodings, which is basically an algorithm that describes how the characters are represented in bytes.</p> <p><a href="http://en.wikipedia.org/wiki/ASCII" rel="nofollow">ASCII</a> acts as both the character set and encoding. It uses 7 bits to express 128 characters (94 printable). <a href="http://en.wikipedia.org/wiki/Unicode" rel="nofollow">Unicode</a> on the other hand is a character set, expressing 1,114,112 code points. There are several encodings to represent Unicode strings but most notable ones are UTF-8, UTF-16, UTF-16LE, and UTF-32. In other words, a single Unicode character can be represented in different ways depending on the encodings.</p> <blockquote> <p>How can I convert unicode characters to ascii codes in delphi 7?</p> </blockquote> <p>I think the question could be interpreted in two ways.</p> <ol> <li><p>I have a Unicode string in some encoding that only includes ASCII printable characters. How can I convert the string into a byte array of ASCII encoding?</p></li> <li><p>I have a Unicode string in some encoding that also includes non-ASCII printable characters such as Chinese characters. How can I encode the string into a ASCII encoding without losing information, and later decode it back to the original Unicode string?</p></li> </ol> <p>If you mean the first, you can load the Unicode string into WideString like Osman is saying and do </p> <pre><code>var original: WideString; s: AnsiString; begin s := AnsiString(original); </code></pre> <p>If you mean the second, you would need a generic encoding algorithm like <a href="http://en.wikipedia.org/wiki/Base64" rel="nofollow">Base64</a> encoding. You can use <a href="http://www.koders.com/delphi/fid42782E3C5F9863B82003C7F35105F7034BE8EC45.aspx" rel="nofollow">DCPBase64.pas</a> included in David Barton's <a href="http://www.cityinthesky.co.uk/cryptography.html" rel="nofollow">DCPcrypt v2 Beta 3</a>.</p>