Char ^ = equivalent to 0xB3 in VBScript

I have the following C ++ code:

Char ^ = 0xB3;

Char is one character per line. Is there an equivalent in VBScript?

0


source to share


1 answer


Char = chr (asc (Char) xor & HB3)



+3


source







All Articles