Reputation: 3
I have a string I am trying to figure out, but I have no idea what format it is in. Any ideas? Here is the string
5365616e
Upvotes: 0
Views: 37
Reputation: 97130
That's regular hexadecimal encoding.
You can find a conversion chart on the Wikipedia page, use any of a multitude of online converters, or use a command-line tool to convert, e.g. echo -ne '5365616e' | xxd -r -p
.
The converted string is Sean
.
Upvotes: 2