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