DevKits

ASCII 97

Latin Small Letter A (a)

Printable ASCII

Lowercase letter a.

All encodings at a glance

Decimal97
Hexadecimal0x61
Octal0141
Binary01100001
HTML numeric entitya
URL encoding%61
UTF-8 bytes0x61

Code snippets

JavaScript

String.fromCharCode(97); // "a"
97.toString(16); // "61"

Python

chr(97)           # 'a'
ord(chr(97))      # 97
hex(97)           # '0x61'

HTML

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

Nearby codes