DevKits

ASCII 76

Latin Capital Letter L (L)

Printable ASCII

Uppercase letter L.

All encodings at a glance

Decimal76
Hexadecimal0x4C
Octal0114
Binary01001100
HTML numeric entityL
URL encoding%4C
UTF-8 bytes0x4C

Code snippets

JavaScript

String.fromCharCode(76); // "L"
76.toString(16); // "4c"

Python

chr(76)           # 'L'
ord(chr(76))      # 76
hex(76)           # '0x4c'

HTML

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

Nearby codes