DevKits

ASCII 77

Latin Capital Letter M (M)

Printable ASCII

Uppercase letter M.

All encodings at a glance

Decimal77
Hexadecimal0x4D
Octal0115
Binary01001101
HTML numeric entityM
URL encoding%4D
UTF-8 bytes0x4D

Code snippets

JavaScript

String.fromCharCode(77); // "M"
77.toString(16); // "4d"

Python

chr(77)           # 'M'
ord(chr(77))      # 77
hex(77)           # '0x4d'

HTML

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

Nearby codes