"
Double quote
Decimal: 34
Hex: 22
Symbol
ASCII Values
Decimal
34
Hexadecimal
0x22
Character
"
Usage Examples
JavaScript (from decimal)
String.fromCharCode(34); // """
JavaScript (to decimal)
""".charCodeAt(0); // 34
Python
chr(34) # """
ord(""") # 34C/C++
char c = 34; // '"' int code = '"'; // 34
Symbol Characters
Symbol characters include punctuation marks, mathematical operators, and special characters used in programming and text formatting.