w
Lowercase w
Decimal: 119
Hex: 77
Lowercase
ASCII Values
Decimal
119
Hexadecimal
0x77
Character
w
Usage Examples
JavaScript (from decimal)
String.fromCharCode(119); // "w"
JavaScript (to decimal)
"w".charCodeAt(0); // 119
Python
chr(119) # "w"
ord("w") # 119C/C++
char c = 119; // 'w' int code = 'w'; // 119
Lowercase Characters
Lowercase letters (97-122) represent small letters a-z. To convert between cases, add or subtract 32 from the ASCII value.