ASCII 64
Commercial At (@)
Printable ASCII
At sign. Email address separator, decorators in Python (@decorator), mentions (@user), CSS at-rules (@media).
All encodings at a glance
| Decimal | 64 |
| Hexadecimal | 0x40 |
| Octal | 0100 |
| Binary | 01000000 |
| HTML numeric entity | @ |
| URL encoding | %40 |
| UTF-8 bytes | 0x40 |
Code snippets
JavaScript
String.fromCharCode(64); // "@"
64.toString(16); // "40"Python
chr(64) # '@'
ord(chr(64)) # 64
hex(64) # '0x40'HTML
@ <!-- numeric entity (no named entity for this character) -->