Skip to content

Instantly share code, notes, and snippets.

@idac73
Last active January 2, 2016 09:59
Show Gist options
  • Save idac73/8286608 to your computer and use it in GitHub Desktop.
Save idac73/8286608 to your computer and use it in GitHub Desktop.
Creating a font? Checking for the entity to that "special character?" Quick and easy. Open a about:blank tab and paste, run this Gist in your console and either inspect the specific element for the entity or let the title attribute display it to you.
charMap = "";
for (i=33;i<65500;i++) {
charMap += "<span title='&amp;#"+i+";'>&#"+i+";</span> ";
}
document.body.innerHTML = charMap;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment