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