Type double byte character into vbscript file - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T10:53:06Z http://stackoverflow.com/feeds/question/134937 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/134937/type-double-byte-character-into-vbscript-file 2 Type double byte character into vbscript file alumb 2008-09-25T18:06:34Z 2008-11-05T14:33:22Z <p>I need to convert &rarr; (&amp;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#135095 1 Answer by Bob King for Type double byte character into vbscript file Bob King 2008-09-25T18:31:38Z 2008-09-25T18:31:38Z <p>ChrW(&amp;H8594)</p> http://stackoverflow.com/questions/134937/type-double-byte-character-into-vbscript-file/135220#135220 1 Answer by alumb for Type double byte character into vbscript file alumb 2008-09-25T18:54:14Z 2008-09-25T18:54:14Z <p>Answer was ChrW(8594)</p>