Skip to content

Instantly share code, notes, and snippets.

@lightyrs
Created June 13, 2011 16:32
Show Gist options
  • Save lightyrs/1023122 to your computer and use it in GitHub Desktop.
Save lightyrs/1023122 to your computer and use it in GitHub Desktop.
Generate Hex Useable Hex Code
var char = "✓";
"&#x" + char.charCodeAt(0).toString(16) + ";";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment