ASCII 65
Latin Capital Letter A (A)
Printable ASCII
Uppercase letter A.
All encodings at a glance
| Decimal | 65 |
| Hexadecimal | 0x41 |
| Octal | 0101 |
| Binary | 01000001 |
| HTML numeric entity | A |
| URL encoding | %41 |
| UTF-8 bytes | 0x41 |
Code snippets
JavaScript
String.fromCharCode(65); // "A"
65.toString(16); // "41"Python
chr(65) # 'A'
ord(chr(65)) # 65
hex(65) # '0x41'HTML
A <!-- numeric entity (no named entity for this character) -->