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