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