VBScript chr() appears to return wrong value - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T01:12:47Zhttp://stackoverflow.com/feeds/question/315719http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/315719/vbscript-chr-appears-to-return-wrong-value2VBScript chr() appears to return wrong valueDavid Brown2008-11-24T22:23:25Z2008-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#3157230Answer by strager for VBScript chr() appears to return wrong valuestrager2008-11-24T22:25:27Z2008-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#3157256Answer by Jimmy for VBScript chr() appears to return wrong valueJimmy2008-11-24T22:26:33Z2008-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#3157310Answer by danimajo for VBScript chr() appears to return wrong valuedanimajo2008-11-24T22:29:22Z2008-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>