Working with character values beyond ChrW(65535) in VbScript -


does vbscript have way support converting hex decimal char beyond range of chrw(65535)?

for example, \u2122 h&2122 (hex), , converts decimal value 8482, which, using chrw prints

response.write chrw(clng("&h2122")) 

results in:

... far.

there characters beyond range of chrw e.g. "g clef" character u+1d11e (utf-16) maps decimal 119,070, beyond range of chrw()

is there way work higher characters in vbscript?


Comments