show/hide this revision's text 2 being more clear, now that this is the accepted answer

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
show/hide this revision's text 1

wild guess (I don't use VBscript) it's returning a 2-byte character. use ChrB(199) instead.