Search code examples
unicodeencodingvbscriptutf-8ansi

Type double byte character into vbscript file


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?


Solution

  • Answer was ChrW(8594)