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