v

ASCII Code 118

Lowercase v

About This Character

ASCII code 118 (0x76) represents the Lowercase v character "v". The lowercase letter "v" has ASCII code 118. 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 118
Octal 166
Hexadecimal 0x76
Binary 01110110
HTML Code v
HTML Entity
Unicode U+0076
Unicode Name LATIN SMALL LETTER V
URL Escape %76
Quoted-Printable v
UTF-8 (Hex) 76
Category Printable — Lowercase Letters

How to Type in Code

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

See Also

Copied!