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
David Brown
source
to share
1 answer
Char = chr (asc (Char) xor & HB3)
+3
moonshadow
source
to share