DevKits

ASCII 108

Latin Small Letter L (l)

Printable ASCII

Lowercase letter l.

All encodings at a glance

Decimal108
Hexadecimal0x6C
Octal0154
Binary01101100
HTML numeric entityl
URL encoding%6C
UTF-8 bytes0x6C

Code snippets

JavaScript

String.fromCharCode(108); // "l"
108.toString(16); // "6c"

Python

chr(108)           # 'l'
ord(chr(108))      # 108
hex(108)           # '0x6c'

HTML

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

Nearby codes