DevKits

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

Decimal34
Hexadecimal0x22
Octal0042
Binary00100010
HTML numeric entity"
HTML named entity"
URL encoding%22
UTF-8 bytes0x22

Code snippets

JavaScript

String.fromCharCode(34); // """
34.toString(16); // "22"

Python

chr(34)           # '"'
ord(chr(34))      # 34
hex(34)           # '0x22'

HTML

&quot;   <!-- named entity -->
&#34;   <!-- numeric entity -->

Nearby codes