DevKits

ASCII 105

Latin Small Letter I (i)

Printable ASCII

Lowercase letter i.

All encodings at a glance

Decimal105
Hexadecimal0x69
Octal0151
Binary01101001
HTML numeric entityi
URL encoding%69
UTF-8 bytes0x69

Code snippets

JavaScript

String.fromCharCode(105); // "i"
105.toString(16); // "69"

Python

chr(105)           # 'i'
ord(chr(105))      # 105
hex(105)           # '0x69'

HTML

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

Nearby codes