y

ASCII Character: Lowercase y

ASCII Code 121 · Unicode U+0079 · Hex 0x79

y lowercase-y

About the Lowercase y Character

ASCII code 121 (0x79) represents the Lowercase y character "y". The lowercase letter "y" has ASCII code 121. 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 121
Hexadecimal 0x79
Octal 171
Binary 01111001
Unicode U+0079
Unicode Name LATIN SMALL LETTER Y
HTML Numeric y
HTML Entity
URL Escape %79
UTF-8 (Hex) 79
Quoted-Printable y

Source Code Examples

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

Navigate

Copied!