You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Wow, thanks for narrowing this down. Turns out it's to do with outputting a hex value under 32 but above 7, and THEN outputting under 8.

    This reliably does it:

    >String.fromCharCode(0x1f)
    ="\x1F"
    >String.fromCharCode(7)
    ="\71F"
    

    It's just been fixed!

About

Avatar for Gordon @Gordon started