How can I decode a hex string to an ascii string?
I want to find the meaning of
559EF4BE-D2E1-4009-AF7B-F81784946A89
or
81CB80D6-62C3-4BC8-99BE-31D7C6E739A4
Thanks
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.
Just a small clarification: ‘ASCII string’ refers to the charset used to represent the characters, not whether or not these chars are represented as int, hex or as printable characters…
Anyways, what I assume you actually want is a program which will show the printable version of the characters. So here’s one way to do it in python:
Good luck.
BTW, hex strings as you presented them, are not usually meant to represent strings. Are you sure that’s what you need?