w

ASCII Character: Lowercase w

ASCII Code 119 · Unicode U+0077 · Hex 0x77

w lowercase-w

About the Lowercase w Character

ASCII code 119 (0x77) represents the Lowercase w character "w". The lowercase letter "w" has ASCII code 119. 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 119
Hexadecimal 0x77
Octal 167
Binary 01110111
Unicode U+0077
Unicode Name LATIN SMALL LETTER W
HTML Numeric w
HTML Entity
URL Escape %77
UTF-8 (Hex) 77
Quoted-Printable w

Source Code Examples

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

Navigate

Copied!