DevKits

ASCII 109

Latin Small Letter M (m)

Printable ASCII

Lowercase letter m.

All encodings at a glance

Decimal109
Hexadecimal0x6D
Octal0155
Binary01101101
HTML numeric entitym
URL encoding%6D
UTF-8 bytes0x6D

Code snippets

JavaScript

String.fromCharCode(109); // "m"
109.toString(16); // "6d"

Python

chr(109)           # 'm'
ord(chr(109))      # 109
hex(109)           # '0x6d'

HTML

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

Nearby codes