Skip to content

Instantly share code, notes, and snippets.

@lmmx
Last active August 29, 2015 13:57
Show Gist options
  • Save lmmx/9804337 to your computer and use it in GitHub Desktop.
Save lmmx/9804337 to your computer and use it in GitHub Desktop.
function htmlDecode(input){
var e = document.createElement('div');
e.innerHTML = input;
return "0"+e.childNodes[0].nodeValue.charCodeAt().toString(16);
}
function guessMyHex(guess){
var guess = htmlDecode("&"+guess+";")
console.log(guess)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment