ASCII 34
Quotation Mark (")
Printable ASCII
Double quote. Must be escaped in JSON strings as \". Wraps string literals in most languages.
All encodings at a glance
| Decimal | 34 |
| Hexadecimal | 0x22 |
| Octal | 0042 |
| Binary | 00100010 |
| HTML numeric entity | " |
| HTML named entity | " |
| URL encoding | %22 |
| UTF-8 bytes | 0x22 |
Code snippets
JavaScript
String.fromCharCode(34); // """
34.toString(16); // "22"Python
chr(34) # '"'
ord(chr(34)) # 34
hex(34) # '0x22'HTML
" <!-- named entity -->
" <!-- numeric entity -->