How to decode this text?

I have a friend who has code like this in his wordpress files:

Blockquote \ X66 \ x75 \ x6e \ x63 \ x74 \ x69 Blockquote

Etc...

How do I decode this? Is there an online tool for this?

+1


source to share


3 answers


You can decode it online using the "Hex to ASCII" tool: http://www.yellowpipe.com/yis/tools/encrypter/index.php



You don't insert "Blockquote" but everything between the blockquote tags.

+3


source


Text is an ASCII representation of some hexadecimal characters, how you decode it will depend a lot on the programming language you were using. Here's an example of a recent ASCII column that might be helpful .



+2


source


It's just hex ... It converts to: "functi"

0


source







All Articles