Type double byte character into vbscript file - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T10:53:06Zhttp://stackoverflow.com/feeds/question/134937http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/134937/type-double-byte-character-into-vbscript-file2Type double byte character into vbscript filealumb2008-09-25T18:06:34Z2008-11-05T14:33:22Z
<p>I need to convert → (&rarr) to a symbol I can type into a ANSI VBScript file. I am writing a script that translates a select set of htmlcodes to their actual double byte symbols using a regex. Many languages accomplish this using "\0x8594;"... what is the equivelent in VBScript?</p>
http://stackoverflow.com/questions/134937/type-double-byte-character-into-vbscript-file/135095#1350951Answer by Bob King for Type double byte character into vbscript fileBob King2008-09-25T18:31:38Z2008-09-25T18:31:38Z<p>ChrW(&H8594)</p>
http://stackoverflow.com/questions/134937/type-double-byte-character-into-vbscript-file/135220#1352201Answer by alumb for Type double byte character into vbscript filealumb2008-09-25T18:54:14Z2008-09-25T18:54:14Z<p>Answer was ChrW(8594)</p>