ASCII 34
ASCII 34 is Double quote, written ".
Every representation
| Character | " |
| Name | Double quote |
| Decimal | 34 |
| Hexadecimal | 0x22 |
| Octal | 0042 |
| Binary | 00100010 |
| HTML entity | " or " |
| Escape sequence | \\" |
| Unicode | U+0022 |
| Group | Punctuation or symbol |
What it is for
Double quote. Must be escaped inside a JSON string as \\", and inside an HTML attribute as ".
Where the number comes from
Codes 32 to 126 hold the printable characters. The punctuation was distributed around the letters and digits so that the most common characters fell into positions that were convenient for the teleprinter keyboards of the time.
Frequently asked questions
What is ASCII 34?
Double quote, the character ". In hexadecimal it is 0x22, in octal 0042, and in binary 00100010.
How do I type ASCII 34?
Type " directly. In a string literal it can also be written \\x22, and in HTML as " or ".
Is ASCII 34 printable?
Yes. Codes 32 to 126 are the printable range, which is every character ASCII can actually display.
Nearby codes
- ASCII 27 — ESC
- ASCII 28 — FS
- ASCII 29 — GS
- ASCII 30 — RS
- ASCII 31 — US
- ASCII 32 — space
- ASCII 33 — !
- ASCII 35 — #
- ASCII 36 — $
- ASCII 37 — %
- ASCII 38 — &
- ASCII 39 — '
- ASCII 40 — (
- ASCII 41 — )
Full ASCII table · Text to binary converter · Number base converter