Hedhehgsheieurbrii
Hedhehgsheieurbrii

Reputation: 3

What is this string encoded in?

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

Answers (1)

Robby Cornelissen
Robby Cornelissen

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

Related Questions