active questions tagged ascii - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:21:41Z http://stackoverflow.com/feeds/tag/ascii http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1270209/getting-an-ascii-character-code-in-ruby-fails 0 Getting an ascii character code in ruby - ? fails dorr 2009-08-13T05:41:35Z 2009-12-22T22:07:21Z <p>I'm in a situation where I need the ASCII value of a character (for <a href="http://projecteuler.net/index.php?section=problems&amp;id=22" rel="nofollow">Project Euler question #22</a>, if you want to get specific) and I'm running into an issue. Being new to ruby, I googled it, and found that ? was the way to go - ?A or whatever. But when I incorporate it into my code, the result of that statement is the string "A" - no character code. Same issue with [0] and slice(0), both of which should theoretically return the ASCII code.</p> <p>The only thing I can think of is that this is a ruby version issue. I'm using 1.9.1 p0, upgraded from 1.8.6 this afternoon. I cheated a little - going from a working version of ruby, in the same directory, I figured I probably already had the files that don't come bundled with the .zip file, so I didn't download them.</p> <p>So why exactly are all my ASCII codes being turned into actual characters? any ideas?</p> http://stackoverflow.com/questions/769208/datatable-column-sort-in-ascii-order-not 1 DataTable column sort in ASCII order, not clintp 2009-04-20T17:07:09Z 2009-12-22T07:36:01Z <p>If I have two strings, and I need to compare them in ASCII order (instead of the invariant culture order) I can generally use:</p> <pre><code>int c = String.Compare(a, b, StringComparison.Ordinal); </code></pre> <p>If I have a DataTable, and I want one of the columns sorted using an Ordinal string comparison for the DataView , how do I go about it?</p> http://stackoverflow.com/questions/1937460/how-do-you-print-a-smiley-face-in-assembly 5 How do you print a smiley-face in assembly? Nick Brooks 2009-12-20T23:21:15Z 2009-12-20T23:43:55Z <p>I wrote a program in assembler and compiled it. <strong>It is meant to print a blue smiley face and then wait for the user to press a key before it terminates.</strong> It does do that last bit but it doesn't print the smiley face. Can someone explain what have I done wrong ?</p> <pre><code>CSEG segment org 100h Begin: mov ax,0B800h mov es,ax mov di,0 mov ah,31 mov al,1 mov es:[di],ax mov ah,10h int 16h int 20h CSEG ends end Begin </code></pre> <p>I compiled it with <strong>MASM</strong> with a <strong>16 bit linker</strong></p> http://stackoverflow.com/questions/1930487/will-a-z-ever-match-accented-characters-in-preg-pcre 5 Will [a-z] ever match accented characters in PREG/PCRE? Garrett Albright 2009-12-18T20:24:04Z 2009-12-18T22:45:35Z <p>I'm already aware that <code>\w</code> in PCRE (particularly PHP's implementation) can sometimes match some non-ASCII characters depending on the locale of the system, but what about <code>[a-z]</code>?</p> <p>I wouldn't think so, but I noticed these lines in one of Drupal's core files (includes/theme.inc, simplified):</p> <pre><code>// To avoid illegal characters in the class, // we're removing everything disallowed. We are not using 'a-z' as that might leave // in certain international characters (e.g. German umlauts). $body_classes[] = preg_replace('![^abcdefghijklmnopqrstuvwxyz0-9-_]+!s', '', $class); </code></pre> <p>Is this true, or did someone simply get <code>[a-z]</code> confused with <code>\w</code>?</p> http://stackoverflow.com/questions/1821545/simple-caesar-cipher-in-java 0 Simple caesar cipher in java Max Canlas 2009-11-30T18:32:08Z 2009-12-17T01:35:49Z <p>Hey I'm making a simple caesar cipher in Java using the formula [x-> (x+shift-1) mod 127 + 1] I want to have my encrypted text to have the ASCII characters except the control characters(i.e from 32-127). How can I avoid the control characters from 0-31 applying in the encrypted text. Thank you.</p> http://stackoverflow.com/questions/1908035/encoding-utf-8-to-base64-with-accents 0 Encoding utf-8 to base64 with accents Agos 2009-12-15T15:02:17Z 2009-12-15T15:31:08Z <p>Hi, I have some data like this:</p> <pre><code>data1 = ['Agos', '30490349304'] data2 = ['Desir\xc3\xa9','9839483948'] </code></pre> <p>I'm using an API that expects the data encoded in base64, so what I do is:</p> <pre><code>data = data1 string = base64.b64encode("Hi, %s! Your code is %s" % (data[0], data[0])) myXMLRPCCall(string) </code></pre> <p>Which works fine with data1. With data2 the encoding goes ok, but then the XMLRPC returns an error, since it expects (from the API docs) only ISO-8859-1 (Latin1) characters.<br> My question is: how can I transform my string into Latin1 so that the API accepts it?</p> http://stackoverflow.com/questions/175240/how-do-i-convert-a-files-format-from-unicode-to-ascii-using-python 6 How do I convert a file's format from Unicode to ASCII using Python? Ray Vega 2008-10-06T17:11:30Z 2009-12-15T09:12:38Z <p>I use a 3rd party tool that outputs a file in Unicode format. However, I prefer it to be in ASCII. The tool does not have settings to change the file format.</p> <p>What is the best way to convert the entire file format using Python?</p> http://stackoverflow.com/questions/1891196/convert-hi-ansi-chars-to-ascii-equivalent-ee-in-delphi2007 2 Convert Hi-Ansi chars to Ascii equivalent (é -> e) in Delphi(2007) François 2009-12-11T22:10:36Z 2009-12-14T18:15:25Z <p>Is there a routine available in D2007 to convert the characters in the high range of the ANSI table (>127) to their equivalent ones in pure ASCII (&lt;=127) according to a locale (codepage)?<br> I know some chars cannot translate well but most can, esp. in the 192-255 range:<br> À -> A<br> à -> a<br> Ë -> E<br> ë -> e<br> Ç -> C<br> ç -> c<br> – -> - (that can be trickier)<br> — -> -</p> http://stackoverflow.com/questions/1896474/converting-utf-8-postgresql-db-into-ascii-shapefile 0 Converting UTF-8 PostgreSQL DB into ASCII Shapefile Adam Matan 2009-12-13T13:11:50Z 2009-12-13T14:53:49Z <p>Hi,</p> <p>I have a PostgreSQL\PostGIS spatial database which contains Hebrew text columns. The system runs on Ubuntu, and everything works flawlessly with UTF-8.</p> <p>I am trying to dump some tables into shapefile for a Windows program which can only read Windows-1255 strings. Unfortunately, <a href="http://postgis.refractions.net/docs/ch04.html#id2537964" rel="nofollow">pgsql2shp</a> has no encoding option, although <a href="http://postgis.refractions.net/docs/ch04.html#id2537558" rel="nofollow">shp2pgsql</a> has, so the Widnows program reads UTF-8 parsed as Windows-1255 giving Gibberish.</p> <p>I have been trying to create an Windows-1255 view to the table columns, but found no way of doing it without corrupting the database.</p> <p>Any ideas how to convert the tables?</p> <p>Thanks,</p> <p>Adam</p> http://stackoverflow.com/questions/941789/ruby-replacing-bullets-pasted-from-ms-word 0 Ruby: Replacing bullets pasted from MS Word Paul 2009-06-02T20:40:09Z 2009-12-10T20:10:28Z <p>I need to remove bullet symbols from text pasted from MS Word, but I can't figure out what to match on.</p> <p>When printed to STDOUT the symbol displays as ⢠The ascii codes for these characters are 194 and 162. The ascii code for • symbols is 149</p> <p>Any suggestions how to proceed either in JavaScript or Ruby code?</p> http://stackoverflow.com/questions/1860072/ascii-encoding-and-umlauts-and-accents 2 ASCII Encoding and Umlauts and Accents jim 2009-12-07T13:45:30Z 2009-12-07T14:52:47Z <p>Hello, I have a requiremnt to produce text files with ASCII encoding. I have a database full of Greek, French, and German characters with Umlauts and Accents. Is this even possible? </p> <pre><code>string reportString = report.makeReport(); Dictionary&lt;string, string&gt; replaceCharacters = new Dictionary&lt;string, string&gt;(); byte[] encodedReport = Encoding.ASCII.GetBytes(reportString); Response.BufferOutput = false; Response.ContentType = "text/plain"; Response.AddHeader("Content-Disposition", "attachment;filename=" + reportName + ".txt"); Response.OutputStream.Write(encodedReport, 0, encodedReport.Length); Response.End(); </code></pre> <p>When I get the reportString back the characters are represented faithfully. When I save the text file I have ? in place of the special characters. </p> <p>As I understand it the ASCII standard is for American English only and something UTF 8 would be for the international audience. Is this a correct?</p> <p>I'm going to make the statement that if the requirement is ASCII encoding we can't have the accents and umlauts represented correctly. </p> <p>Or, am I way off and doing/saying something stupid?</p> <p>Thanks for your help. </p> http://stackoverflow.com/questions/1647644/php-input-filtering-checking-ascii-vs-checking-utf8 0 PHP input filtering - checking ascii vs checking utf8 Xeoncross 2009-10-30T02:13:58Z 2009-12-07T14:31:46Z <p>I need to insure that all my strings are utf8. Would it be better to check that input coming from a user is ascii-like or that it is utf8-like?</p> <pre><code>//KohanaPHP function is_ascii($str) { return ! preg_match('/[^\x00-\x7F]/S', $str); } //Wordpress function seems_utf8($Str) { for ($i=0; $i&lt;strlen($Str); $i++) { if (ord($Str[$i]) &lt; 0x80) continue; # 0bbbbbbb elseif ((ord($Str[$i]) &amp; 0xE0) == 0xC0) $n=1; # 110bbbbb elseif ((ord($Str[$i]) &amp; 0xF0) == 0xE0) $n=2; # 1110bbbb elseif ((ord($Str[$i]) &amp; 0xF8) == 0xF0) $n=3; # 11110bbb elseif ((ord($Str[$i]) &amp; 0xFC) == 0xF8) $n=4; # 111110bb elseif ((ord($Str[$i]) &amp; 0xFE) == 0xFC) $n=5; # 1111110b else return false; # Does not match any model for ($j=0; $j&lt;$n; $j++) { # n bytes matching 10bbbbbb follow ? if ((++$i == strlen($Str)) || ((ord($Str[$i]) &amp; 0xC0) != 0x80)) return false; } } return true; } </code></pre> <p>I did some benchmarking on 100 strings (half valid utf8/ascii and half not) and found that seems_utf8() tasks 0.011 while is_ascii only takes 0.001. But my gut is telling me that you get what you pay for and the utf8 checking would be a better choice.</p> <p>I'm planning on then doing something like this convert.</p> <pre><code>&lt;?php /* Example data */ $string[] = 'hello'; $string[] = 'asdfghjkl;qwertyuiop[]\zxcvbnm,./]12345657890-=+_)(*&amp;^%$#@!'; $string[] = ''; $string[] = 'accentué'; $string[] = '»á½µÎ½Ï‰Î½ τὰ '; $string[] = '???R??=8 ????? ++++¦??? ???2??????'; $string[] = 'hello¦ùó 5/5¡45-52ZÜ¿»'. "0x93". octdec('77'). decbin(26). "F???pp?? ??? ". '»á½µÎ½Ï‰Î½ τὰ '; $time = microtime(true); //Count the successes $true = array(1 =&gt; 0, 0 =&gt; 0); foreach($string as $s) { $r = seems_utf8($s); //0.011 print_pre(mb_substr($s, 0, 30). ' is '. ($r ? 'UTF-8' : 'non-UTF-8')); if( ! $r ) { $e = mb_detect_encoding($s, "auto"); print_pre('Encoding: '. $e); //Convert $s = iconv($e, 'UTF-8//TRANSLIT', $s); print_pre(mb_substr($s, 0, 30). ' is now '. (seems_utf8($s) ? 'valid' : 'not'). ' UTF-8'); } } print_pre($true); print_pre((microtime(TRUE) - $time). ' seconds'); function print_pre() { print '&lt;pre&gt;'; print_r(func_get_args()); print '&lt;/pre&gt;'; } </code></pre> http://stackoverflow.com/questions/464874/unmappable-character-for-encoding-warning-in-java 4 "unmappable character for encoding" warning in Java seanhodges 2009-01-21T11:17:37Z 2009-12-07T07:56:16Z <p>I'm currently working on a Java project that is emitting the following warning when I compile:</p> <pre><code>/src/com/myco/apps/AppDBCore.java:439: warning: unmappable character for encoding UTF8 [javac] String copyright = "� 2003-2008 My Company. All rights reserved."; </code></pre> <p>I'm not sure how SO will render the character before the date, but it should be a copyright symbol, and is displayed in the warning as a question mark in a diamond.</p> <p>It's worth noting that the character appears in the output artifact correctly, but the warnings are a nuisance and the file containing this class may one day be touched by a text editor that saves the encoding incorrectly...</p> <p>How can I inject this character into the "copyright" string so that the compiler is happy, and the symbol is preserved in the file without potential re-encoding issues?</p> http://stackoverflow.com/questions/1848164/c-ascii-protocol-problem 0 c# ascii protocol problem UF 2009-12-04T16:39:25Z 2009-12-05T23:34:17Z <p>i have a program that send ASCII commands to a device via a serial port. The program is a demo and doesn't do what i want.</p> <p>I am just trying to get the device to respond in c# and I'm not getting anything back. all the serial port settings are correct. I am sending exactly the same message as the demo software.</p> <pre><code>//e.g message &lt;STX&gt;ABC&lt;EOT&gt; byte[] msg = new byte[5]; msg[0] = 0x02; msg[1] = 0x41; msg[2] = 0x42; msg[3] = 0x43; msg[4] = 0x04; comport.write(msg, 0,msg.length) </code></pre> <p>the device is a monitor. The code was only an example. there isn't a heartbeat just a response for a correct message sent or a error message. the settings are standard 9600-8-N-1. "paperclip between pins 2 and 3 (TX and RX)." yeah i know the cable works because its the same one used with the product software that works. and im getting back what i send. I have used a virtual com program and everything seems alright. "6 bytes but initializing only the first 5. " sorry typo.</p> <p>the SerialPort.DtrEnable and RtsEnable properties to true. are on by default in c#. i have tried the hyper terminal and am not getting a response with that either. I have sent \r and \n with no luck.</p> http://stackoverflow.com/questions/1836152/using-php-to-convert-ascii-character-to-decimal-equivalent 0 Using PHP to Convert ASCII Character to Decimal Equivalent Jim Fell 2009-12-02T22:02:48Z 2009-12-02T22:11:35Z <p>Can someone suggest a (preferably) graceful way to convert an ASCII character to its decimal equivalent using PHP?</p> http://stackoverflow.com/questions/144176/fastest-way-to-convert-a-possibly-null-terminated-ascii-byte-to-a-string 0 Fastest way to convert a possibly-null-terminated ascii byte[] to a string? wizlb 2008-09-27T18:13:37Z 2009-12-02T19:18:24Z <p>I need to convert a (possibly) null terminated array of ascii bytes to a string in C# and the fastest way I've found to do it is by using my UnsafeAsciiBytesToString method shown below. This method uses the String.String(sbyte*) constructor which contains a warning in it's remarks:</p> <p>"The value parameter is assumed to point to an array representing a string encoded using the default ANSI code page (that is, the encoding method specified by Encoding.Default).</p> <p>Note: <strong>* Because the default ANSI code page is system-dependent, the string created by this constructor from identical signed byte arrays may differ on different systems. *</strong> ...</p> <p><strong>* If the specified array is not null-terminated, the behavior of this constructor is system dependent. For example, such a situation might cause an access violation. *</strong> "</p> <p>Now, I'm positive that the way the string is encoded will never change... but the default codepage on the system that my app is running on might change. So, is there any reason that I shouldn't run screaming from using String.String(sbyte*) for this purpose?</p> <pre><code>using System; using System.Text; namespace FastAsciiBytesToString { static class StringEx { public static string AsciiBytesToString(this byte[] buffer, int offset, int maxLength) { int maxIndex = offset + maxLength; for( int i = offset; i &lt; maxIndex; i++ ) { /// Skip non-nulls. if( buffer[i] != 0 ) continue; /// First null we find, return the string. return Encoding.ASCII.GetString(buffer, offset, i - offset); } /// Terminating null not found. Convert the entire section from offset to maxLength. return Encoding.ASCII.GetString(buffer, offset, maxLength); } public static string UnsafeAsciiBytesToString(this byte[] buffer, int offset) { string result = null; unsafe { fixed( byte* pAscii = &amp;buffer[offset] ) { result = new String((sbyte*)pAscii); } } return result; } } class Program { static void Main(string[] args) { byte[] asciiBytes = new byte[]{ 0, 0, 0, (byte)'a', (byte)'b', (byte)'c', 0, 0, 0 }; string result = asciiBytes.AsciiBytesToString(3, 6); Console.WriteLine("AsciiBytesToString Result: \"{0}\"", result); result = asciiBytes.UnsafeAsciiBytesToString(3); Console.WriteLine("UnsafeAsciiBytesToString Result: \"{0}\"", result); /// Non-null terminated test. asciiBytes = new byte[]{ 0, 0, 0, (byte)'a', (byte)'b', (byte)'c' }; result = asciiBytes.UnsafeAsciiBytesToString(3); Console.WriteLine("UnsafeAsciiBytesToString Result: \"{0}\"", result); Console.ReadLine(); } } } </code></pre> http://stackoverflow.com/questions/1820455/does-net-provides-api-to-convert-ascii-to-bcd 0 does .net provides api to convert ascii to bcd? sahil garg 2009-11-30T15:23:16Z 2009-11-30T16:02:27Z <p>Platfrom 3.5 .net.(c#)</p> <p>please refer me to code which converts ascii to bcd (c#). </p> http://stackoverflow.com/questions/1817695/python-how-to-get-stringio-writelines-to-accept-unicode-string 2 Python: How to get StringIO.writelines to accept unicode string? rutherford 2009-11-30T03:23:28Z 2009-11-30T10:30:28Z <p>I'm getting a </p> <pre><code>UnicodeEncodeError: 'ascii' codec can't encode character u'\xa3' in position 34: ordinal not in range(128) </code></pre> <p>on a string stored in 'a.desc' below as it contains the '£' character. It's stored in the underlying Google App Engine datastore as a unicode string so that's fine. The cStringIO.StringIO.writelines function is trying seemingly trying to encode it in ascii format:</p> <pre><code>result.writelines(['blahblah',a.desc,'blahblahblah']) </code></pre> <p>How do I instruct it to treat the encoding as unicode if that's the correct phrasing?</p> <p>app engine runs on python 2.5</p> http://stackoverflow.com/questions/1818366/how-to-use-trace-with-ascii-under-unicode-mfc-environment 1 How to use TRACE with ascii under unicode MFC environment? Victor Lin 2009-11-30T07:42:06Z 2009-11-30T08:53:43Z <p>I am developing a MFC program under windows CE. It is unicode by default. I can use TRACE to print some message like this</p> <pre><code>TRACE(TEXT("Hey! we got a problem!\n")); </code></pre> <p>It works fine if everything is unicode. But however, I got some ascii string to print. For example:</p> <pre><code>// open the serial port m_Context = CreateFile(TEXT("COM1:"), ...); int rc = ReadFile(m_Context, buffer, 1, cBytes, NULL); // Oops!! We got a problem, because we can't print a non-unicode string TRACE(TEXT("Read data: %s\n"), buffer); </code></pre> <p>I read string through com1 from a GPS module. It send text like this "$GPSGGA,1,2,3,4". They are all encoded with ASCII. I want to print them out with TRACE, how can I do?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1818025/reading-characters-outside-ascii 0 Reading characters outside ASCII. Masse 2009-11-30T05:48:13Z 2009-11-30T06:15:24Z <p>A friend of mine showed me a situation where reading characters produced unexpected behaviour. Reading the character '¤' caused his program to crash. I was able to conclude that '¤' is 164 decimal so it's over the ASCII range.</p> <p>We noticed the behaviour on '¤' but any character >127 seems to show the problem. The question is how would we reliably read such characters char by char?</p> <pre><code>int main(int argc, const char *argv[]) { char input; do { cin &gt;&gt; input; cout &lt;&lt; input; cout &lt;&lt; " " &lt;&lt; setbase(10) &lt;&lt; (int)input; cout &lt;&lt; " 0x" &lt;&lt; setbase(16) &lt;&lt; (int)input; cout &lt;&lt; endl; } while(input); return 0; } masse@libre:temp/2009-11-30 $ ./a.out ¤  -62 0xffffffc2 ¤ -92 0xffffffa4 </code></pre> http://stackoverflow.com/questions/1812104/relation-between-net-encoding-and-characterset 0 Relation between .NET Encoding and Characterset programmernovice 2009-11-28T09:40:44Z 2009-11-28T15:55:15Z <p>What's relation between CharacterSet here:<br> <a href="http://msdn.microsoft.com/en-us/library/ms709353%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms709353%28VS.85%29.aspx</a><br> and ascii encoding here:<br> <a href="http://msdn.microsoft.com/en-us/library/system.text.asciiencoding.getbytes%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.text.asciiencoding.getbytes%28VS.71%29.aspx</a></p> http://stackoverflow.com/questions/1801473/japanese-ascii-code 1 Japanese Ascii Code cedric 2009-11-26T04:02:14Z 2009-11-26T04:57:27Z <p>Hi where can I get a list of Ascii codes corresponding to japanese kanji, hiraggana and katakana characters. I am doing a java function and javascript which determines wether it is a japanese character. What is its range in the ASCII code</p> http://stackoverflow.com/questions/368805/python-unicodedecodeerror-am-i-misunderstanding-encode 5 Python UnicodeDecodeError - Am I misunderstanding encode? Greg 2008-12-15T15:57:24Z 2009-11-25T23:22:55Z <p>Any thoughts on why this isn't working? I really thought 'ignore' would do the right thing.</p> <pre><code>&gt;&gt;&gt; 'add \x93Monitoring\x93 to list '.encode('latin-1','ignore') Traceback (most recent call last): File "&lt;interactive input&gt;", line 1, in ? UnicodeDecodeError: 'ascii' codec can't decode byte 0x93 in position 4: ordinal not in range(128) </code></pre> http://stackoverflow.com/questions/1792602/what-is-the-fool-proof-way-to-convert-some-string-utf-8-or-else-to-a-simple-asc 2 What is the fool proof way to convert some string (utf-8 or else) to a simple ASCII string in python noam 2009-11-24T20:08:18Z 2009-11-25T00:19:45Z <p>Inside my python scrip, I get some string back from a function which I didn't write. The encoding of it varies. I need to convert it to ascii format. Is there some fool-proof way of doing this? I don't mind replacing the non-ascii chars with blanks or something else...</p> http://stackoverflow.com/questions/1779590/us-ascii-encoding-with-odd-and-even-numbers 0 US-ASCII encoding with Odd and Even numbers? Heoa 2009-11-22T18:51:30Z 2009-11-24T13:38:35Z <p>I splitted the list of numbers 1-100 to files of 2 bytes. Then, I noticed that each odd number btw 11-99 needs 2 files, ie 4bytes, while each even number btw 11-99 needs 1 file, 2bytes. A file is enough for numbers btw 1-10. You can confirm the finding below.</p> <p>How can you explain the finding?</p> <p><strong>What did I do?</strong></p> <ol> <li><p>save numbers to a file, like in VIM:</p> <p>:%!python -c "for i in range(1,100): print i" </p> <p>:w! list_0_100</p></li> <li><p>split the file to 2 bytes' files with the GNU Split-command in Coreutils:</p> <p>$ split -b2 -d list_0_100</p></li> </ol> <p><strong>Finding:</strong> Each odd number btw 11-99 needs only two files, ie 4bytes. In contrast, each even number btw 11-99 needs one file, ie 2bytes:</p> <pre><code>$ head x* ==&gt; x07 &lt;== 8 ==&gt; x08 &lt;== 9 ==&gt; x09 &lt;== 10 ==&gt; x10 &lt;== 1 ==&gt; x11 &lt;== 1 ==&gt; x12 &lt;== 12 ==&gt; x13 &lt;== 1 ==&gt; x14 &lt;== 3 ==&gt; x15 &lt;== 14 ==&gt; x16 &lt;== 1 ==&gt; x17 &lt;== 5 </code></pre> http://stackoverflow.com/questions/1784358/strange-codes-in-text-like-ads-aga-or-acoakg-and-aceaiq 0 strange codes in text, like +ADs-, +AGA-, or +ACoAKg- and +ACEAIQ- brightbyte 2009-11-23T16:39:53Z 2009-11-23T17:01:42Z <p>i got a dataset that uses a strange encoding for non-printables / diacritics. i'm getting hte impression that it's an artifact of some mail system. or maybe it's excel or something? anyway, the stuff i get looks like this:</p> <p>+ADs-, +AGA-, or +ACoAKg- and +ACEAIQ-</p> <p>there's more.... any idea what that this and where it comes from? google shows me stuff from mailing lists etc - but theys just look like mangeled mail, nothing discussing the codes themselve.</p> <p>Interestingly, Excel seems to know what to do with them. Might be something like quoted printable... just different :) any idea?</p> http://stackoverflow.com/questions/1779692/percent-encoded-utf-8-to-ascii8-bit-conversion 0 Percent Encoded UTF-8 to Ascii(8-bit) conversion zacaj 2009-11-22T19:23:58Z 2009-11-22T21:06:29Z <p>Im reading in urls and they often have percent encoded characters.</p> <p>Example: %C3%A9 is actually é</p> <p>According to <a href="http://www.microsystools.com/products/sitemap-generator/faq/character-percentage-url-encoding/" rel="nofollow">http://www.microsystools.com/products/sitemap-generator/faq/character-percentage-url-encoding/</a> , characters in the upper half of 8-Bit ASCII (128-255) are encoded as UTF-8, then their bytes are saved as hex. Now, when I get my URL, the %HEX's have been reencoded as 8-bit ascii, and I need to convert those back to their true 8bit ascii. Is there any function/library I can use, or else, how would I go about the conversion? </p> <p>Im using C/C++.</p> http://stackoverflow.com/questions/1775206/are-ascii-characters-always-encoded-the-same-way-in-all-character-encodings 0 Are ASCII characters always encoded the same way in all character encodings? Kaitsuli 2009-11-21T11:19:41Z 2009-11-21T12:01:13Z <p>In ASCII, the character &lt; is encoded as a single-byte character 0x3C, what I'd like to know is that is there a character set where &lt; is encoded differently? I tried UTF-8, it's the same. I tried GB2312 and it's the same...</p> <p>Another question, are all ASCII characters the same in all character sets?</p> http://stackoverflow.com/questions/1764011/issues-with-chr0-in-sql-insert-script 1 Issues with Chr(0) in SQL INSERT script Keith 2009-11-19T15:17:01Z 2009-11-20T20:36:32Z <p>We currently use the SQL Publishing Wizard to back up our database schemas and data, however we have some database tables with hashed passwords that contain the null character (chr(0)). When SQL Publishing Wizard generates the insert data scripts, the null character causes errors when we try and run the resulting SQL - it appears to ignore ALL TEXT after the first instance of this character in a script. We recently tried out RedGate SQL Compare, and found that it has the same issue with this character. I have confirmed it is ascii character code 0 by running the ascii() sql function against the offending record.</p> <p>A sample of the error we are getting is:</p> <pre><code>Unclosed quotation mark after the character string '??`????{??0??? </code></pre> <p>The fun part is, I can't really paste a sample Insert statement because of course everything that appears after the CHR(0) is being omitted when pasting!</p> http://stackoverflow.com/questions/1383132/converting-alphanumeric-to-ascii-and-incrementing 3 Converting alphanumeric to ascii and incrementing Melinda 2009-09-05T11:43:24Z 2009-11-20T02:48:22Z <p>Hello all, I'm stumped on how to convert 3 letters and 3 numbers to ascii and increment them by one...it's the old next-license-plate problem. Can anyone give me a nudge in the right direction? </p>