DevKits

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

Decimal64
Hexadecimal0x40
Octal0100
Binary01000000
HTML numeric entity@
URL encoding%40
UTF-8 bytes0x40

Code snippets

JavaScript

String.fromCharCode(64); // "@"
64.toString(16); // "40"

Python

chr(64)           # '@'
ord(chr(64))      # 64
hex(64)           # '0x40'

HTML

&#64;   <!-- numeric entity (no named entity for this character) -->

Nearby codes