VBScript chr() appears to return wrong value - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:12:47Z http://stackoverflow.com/feeds/question/315719 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/315719/vbscript-chr-appears-to-return-wrong-value 2 VBScript chr() appears to return wrong value David Brown 2008-11-24T22:23:25Z 2008-11-25T19:28:45Z <p>I'm trying to convert a character code to a character with chr(), but VBScript isn't giving me the value I expect. According to VBScript, character code 199 is:</p> <pre><code>� </code></pre> <p>However, when using something like Javascript's String.fromCharCode, 199 is:</p> <pre><code>Ç </code></pre> <p>The second result is what I need to get out of VBScript's chr() function. Any idea what the problem is?</p> http://stackoverflow.com/questions/315719/vbscript-chr-appears-to-return-wrong-value/315723#315723 0 Answer by strager for VBScript chr() appears to return wrong value strager 2008-11-24T22:25:27Z 2008-11-24T22:25:27Z <p>Encoding is the problem. Javascript may be interpreting as latin-1; VBScript may be using a different encoding and getting confused.</p> http://stackoverflow.com/questions/315719/vbscript-chr-appears-to-return-wrong-value/315725#315725 6 Answer by Jimmy for VBScript chr() appears to return wrong value Jimmy 2008-11-24T22:26:33Z 2008-11-25T19:28:45Z <p><b>Edited to reflect comments</b></p> <p>Chr(199) returns a 2-byte character, which is being interpreted as 2 separate characters.</p> <ul> <li>use ChrW(199) to return a Unicode string.</li> <li>use ChrB(199) to return it as a single-byte character</li> </ul> http://stackoverflow.com/questions/315719/vbscript-chr-appears-to-return-wrong-value/315731#315731 0 Answer by danimajo for VBScript chr() appears to return wrong value danimajo 2008-11-24T22:29:22Z 2008-11-24T22:29:22Z <p>The fromCharCode() takes the specified <strong>Unicode</strong> values and returns a string.</p> <p>The Chr function converts the specified <strong>ANSI</strong> character code to a character.</p>