Which encoding uses the \x (backslash x) prefix?

前端 未结 4 503
星月不相逢
星月不相逢 2020-12-13 06:17

I\'m attempting to decode text which is prefixing certain \'special characters\' with \\x. I\'ve worked out the following mappings by hand:

         


        
4条回答
  •  北海茫月
    2020-12-13 06:38

    It's ASCII. All occurrences of the four characters \xST are converted to 1 character, whose ASCII code is ST (in hexadecimal), where S and T are any of 0123456789abcdefABCDEF.

提交回复
热议问题