m

ASCII Character: Lowercase m

ASCII Code 109 · Unicode U+006D · Hex 0x6D

m lowercase-m

About the Lowercase m Character

ASCII code 109 (0x6D) represents the Lowercase m character "m". The lowercase letter "m" has ASCII code 109. Lowercase letters a–z span codes 97–122. Subtracting 32 from a lowercase letter’s ASCII code gives the corresponding uppercase letter (e.g., 'a' at 97 - 32 = 'A' at 65). The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 109
Hexadecimal 0x6D
Octal 155
Binary 01101101
Unicode U+006D
Unicode Name LATIN SMALL LETTER M
HTML Numeric m
HTML Entity
URL Escape %6D
UTF-8 (Hex) 6D
Quoted-Printable m

Source Code Examples

JavaScript
// Character literal
let char = 'm';
// Using char code
let char2 = String.fromCharCode(109);
// Unicode escape
let char3 = '\x6D';
Python
# Character literal
char = 'm'
# Using chr()
char = chr(109)
# Using ord() to get code
code = ord('m')  # Returns 109
HTML
<!-- Direct character -->
m
<!-- HTML entity (numeric) -->
&#109;
<!-- Hex entity -->
&#x6D;
C#
// Character literal
char c = 'm';
// Using cast
char c2 = (char)109;
// To get code from char
int code = (int)'m';  // Returns 109

Navigate

Copied!