ASCII 77
Latin Capital Letter M (M)
Printable ASCII
Uppercase letter M.
All encodings at a glance
| Decimal | 77 |
| Hexadecimal | 0x4D |
| Octal | 0115 |
| Binary | 01001101 |
| HTML numeric entity | M |
| URL encoding | %4D |
| UTF-8 bytes | 0x4D |
Code snippets
JavaScript
String.fromCharCode(77); // "M"
77.toString(16); // "4d"Python
chr(77) # 'M'
ord(chr(77)) # 77
hex(77) # '0x4d'HTML
M <!-- numeric entity (no named entity for this character) -->