Respond to Unicode in VBScript — the AscW() rant
Caveat poster: if you decide to digitally sign your post, add something to it mentioning that it is attached to this article. Otherwise, someone could just paste it into another discussion, out of context, and the signature would still validate.
Re: Unicode in VBScript — the AscW() rant
Written by Anonymous Coward (0) on 2009-6-30 (火) at 11:17 pm
little error in the block
MaskSixBits = 2^6 - 1 ' the lower 6 bits are 1
MaskFourBits = 2^4 - 1 ' the lower 4 bits are 1
MaskThreeBits = 2^3 - 1 ' the lower 3 bits are 1
MaskTwoBits = 2^2 - 1 ' the lower 3 bits are 1
in the last line the comment should read "'the lower 2 bits are 1"