ASCII 96
Grave Accent (`)
Printable ASCII
Backtick. Wraps template literals in JavaScript, raw strings in Go, and code in Markdown.
All encodings at a glance
| Decimal | 96 |
| Hexadecimal | 0x60 |
| Octal | 0140 |
| Binary | 01100000 |
| HTML numeric entity | ` |
| URL encoding | %60 |
| UTF-8 bytes | 0x60 |
Code snippets
JavaScript
String.fromCharCode(96); // "`"
96.toString(16); // "60"Python
chr(96) # '`'
ord(chr(96)) # 96
hex(96) # '0x60'HTML
` <!-- numeric entity (no named entity for this character) -->