Last active
March 29, 2017 02:23
-
-
Save constdrop/3ed9126e450504fb6092b0fb4fe60ff3 to your computer and use it in GitHub Desktop.
Ascii HTML Character Entities.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| " ": " ", | |
| "!": "!", | |
| "\"": """, | |
| "#": "#", | |
| "$": "$", | |
| "%": "%", | |
| "&": "&", | |
| "'": "'", | |
| "(": "(", | |
| ")": ")", | |
| "*": "*", | |
| "+": "+", | |
| ",": ",", | |
| "-": "-", | |
| ".": ".", | |
| "\/": "/", | |
| ":": ":", | |
| ";": ";", | |
| "<": "<", | |
| "=": "=", | |
| ">": ">", | |
| "?": "?", | |
| "@": "@", | |
| "[": "[", | |
| "\\": "\", | |
| "]": "]", | |
| "^": "^", | |
| "_": "_", | |
| "`": "`", | |
| "{": "{", | |
| "|": "|", | |
| "}": "}", | |
| "~": "~" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment