Skip to content

Instantly share code, notes, and snippets.

@dmjcomdem
Last active September 7, 2017 07:17
Show Gist options
  • Save dmjcomdem/ca63348601cb124533438420e1c00cc7 to your computer and use it in GitHub Desktop.
Save dmjcomdem/ca63348601cb124533438420e1c00cc7 to your computer and use it in GitHub Desktop.
Unicode characters displayed in HTML and CSS
'•'.charCodeAt().toString(16) // HTML::(&#x2022) CSS::(\2022)
String.fromCharCode(0x2022); // '•'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment