V

ASCII Code 86

Uppercase V

About This Character

ASCII code 86 (0x56) represents the Uppercase V character "V". The uppercase letter "V" has ASCII code 86. Uppercase letters A–Z span codes 65–90. The relationship between uppercase and lowercase ASCII letters is consistent: adding 32 to an uppercase letter’s code gives the corresponding lowercase letter (e.g., 'A' at 65 + 32 = 'a' at 97). 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 86
Octal 126
Hexadecimal 0x56
Binary 01010110
HTML Code V
HTML Entity
Unicode U+0056
Unicode Name LATIN CAPITAL LETTER V
URL Escape %56
Quoted-Printable V
UTF-8 (Hex) 56
Category Printable — Uppercase Letters

How to Type in Code

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

See Also

Copied!