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