The escaped hex code for characters.
where you have \x and then the hex code for the ascii character.
like ‘\x48’
how do you call it ?
and is there an online tool for converting it to text ?
like for example by using python:
s = '\x48\x49'
s
'HI'
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are using firefox or chrome, they can turn it into a text if you just copypaste a string like
'\x48\x49'to the their console. But you could also use this http://jsfiddle.net/HHfdp/show/They are called hexadecimal escape sequences.