DevKits

ASCII 65

Latin Capital Letter A (A)

Printable ASCII

Uppercase letter A.

All encodings at a glance

Decimal65
Hexadecimal0x41
Octal0101
Binary01000001
HTML numeric entityA
URL encoding%41
UTF-8 bytes0x41

Code snippets

JavaScript

String.fromCharCode(65); // "A"
65.toString(16); // "41"

Python

chr(65)           # 'A'
ord(chr(65))      # 65
hex(65)           # '0x41'

HTML

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

Nearby codes