v

ASCII Character: Lowercase v

ASCII Code 118 · Unicode U+0076 · Hex 0x76

v lowercase-v

About the Lowercase v 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.

Encoding Details

ASCII Code 118
Hexadecimal 0x76
Octal 166
Binary 01110110
Unicode U+0076
Unicode Name LATIN SMALL LETTER V
HTML Numeric v
HTML Entity
URL Escape %76
UTF-8 (Hex) 76
Quoted-Printable v

Source Code Examples

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

Navigate

Copied!