DevKits

ASCII 73

Latin Capital Letter I (I)

Printable ASCII

Uppercase letter I.

All encodings at a glance

Decimal73
Hexadecimal0x49
Octal0111
Binary01001001
HTML numeric entityI
URL encoding%49
UTF-8 bytes0x49

Code snippets

JavaScript

String.fromCharCode(73); // "I"
73.toString(16); // "49"

Python

chr(73)           # 'I'
ord(chr(73))      # 73
hex(73)           # '0x49'

HTML

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

Nearby codes