ASCII 109
Latin Small Letter M (m)
Printable ASCII
Lowercase letter m.
All encodings at a glance
| Decimal | 109 |
| Hexadecimal | 0x6D |
| Octal | 0155 |
| Binary | 01101101 |
| HTML numeric entity | m |
| URL encoding | %6D |
| UTF-8 bytes | 0x6D |
Code snippets
JavaScript
String.fromCharCode(109); // "m"
109.toString(16); // "6d"Python
chr(109) # 'm'
ord(chr(109)) # 109
hex(109) # '0x6d'HTML
m <!-- numeric entity (no named entity for this character) -->