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