vote up 2 vote down star

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?

flag

63% accept rate

2 Answers

vote up 1 vote down check

Answer was ChrW(8594)

link|flag
vote up 1 vote down

ChrW(&H8594)

link|flag
The &H doesn't work. Give me Chinese rather than an arrow. – alumb Sep 25 '08 at 18:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.