ASCII 97
Latin Small Letter A (a)
Printable ASCII
Lowercase letter a.
All encodings at a glance
| Decimal | 97 |
| Hexadecimal | 0x61 |
| Octal | 0141 |
| Binary | 01100001 |
| HTML numeric entity | a |
| URL encoding | %61 |
| UTF-8 bytes | 0x61 |
Code snippets
JavaScript
String.fromCharCode(97); // "a"
97.toString(16); // "61"Python
chr(97) # 'a'
ord(chr(97)) # 97
hex(97) # '0x61'HTML
a <!-- numeric entity (no named entity for this character) -->