u

ASCII Code 117

Lowercase u

About This Character

ASCII code 117 (0x75) represents the Lowercase u character "u". The lowercase letter "u" has ASCII code 117. 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.

Character Encoding

Decimal 117
Octal 165
Hexadecimal 0x75
Binary 01110101
HTML Code u
HTML Entity
Unicode U+0075
Unicode Name LATIN SMALL LETTER U
URL Escape %75
Quoted-Printable u
UTF-8 (Hex) 75
Category Printable — Lowercase Letters

How to Type in Code

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

See Also

Copied!