n

ASCII Character: Lowercase n

ASCII Code 110 · Unicode U+006E · Hex 0x6E

n lowercase-n

About the Lowercase n Character

ASCII code 110 (0x6E) represents the Lowercase n character "n". The lowercase letter "n" has ASCII code 110. 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 110
Hexadecimal 0x6E
Octal 156
Binary 01101110
Unicode U+006E
Unicode Name LATIN SMALL LETTER N
HTML Numeric n
HTML Entity
URL Escape %6E
UTF-8 (Hex) 6E
Quoted-Printable n

Source Code Examples

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

Navigate

Copied!