wild guess (I don't use VBscript
Edited to reflect comments
Chr(199) it's returning returns a 2-byte character, which is being interpreted as 2 separate characters.
- use ChrB(199ChrW(199) insteadto return a Unicode string.
- use ChrB(199) to return it as a single-byte character
