DevKits

ASCII 101

Latin Small Letter E (e)

Printable ASCII

Lowercase letter e.

All encodings at a glance

Decimal101
Hexadecimal0x65
Octal0145
Binary01100101
HTML numeric entitye
URL encoding%65
UTF-8 bytes0x65

Code snippets

JavaScript

String.fromCharCode(101); // "e"
101.toString(16); // "65"

Python

chr(101)           # 'e'
ord(chr(101))      # 101
hex(101)           # '0x65'

HTML

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

Nearby codes