hi people,
does some one knows which language this is?
%77%61%66%66%6c%65%69%73%73%75%70%65%72
its a encryption(duh)
Printable View
hi people,
does some one knows which language this is?
%77%61%66%66%6c%65%69%73%73%75%70%65%72
its a encryption(duh)
Yeah, looks like ascii codes. Find an ascii table and match the codes to letters.
I'm not sure you can even call that encryption, because that's what you'll see if you open the same plain text in a hex editor.
That's a common url encoding, so:
javascript:document.write("%77%61%66%66%6c%65%69%73%73%75%70%65%72");
into ur browser.
result:
waffle is super
http://www.asciitable.com/
77 in hex = w
61 = a
66 = f
66 = f
tho urls are utf8 formatted so 2 byte chars can't be taken from this table.
But for anything below the value of 0x80 works fine.