w

ASCII Code 119

Lowercase w

About This 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.

Character Encoding

Decimal 119
Octal 167
Hexadecimal 0x77
Binary 01110111
HTML Code w
HTML Entity
Unicode U+0077
Unicode Name LATIN SMALL LETTER W
URL Escape %77
Quoted-Printable w
UTF-8 (Hex) 77
Category Printable — Lowercase Letters

How to Type in Code

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

See Also

Copied!