DevKits

ASCII 86

Latin Capital Letter V (V)

Printable ASCII

Uppercase letter V. ASCII code 86. Lowercase 'v' is 118. '\v' is the vertical-tab escape (code 11), unrelated to this letter.

Common uses & context

Theuppercase letter 'V' has ASCII code 86 (0x56). Its lowercase twin 'v' sits exactly 32 code points away at 118. That constant gap of 32 — a single bit, 0x20 — is why changing letter case is one of the cheapest operations a CPU can do: you flip or mask one bit rather than looking anything up. Uppercase letter V. ASCII code 86. Lowercase 'v' is 118. '\v' is the vertical-tab escape (code 11), unrelated to this letter.

The uppercase Latin letters form the contiguous block 65–90, so range checks like c >= 'A' && c <= 'Z' work without a lookup table. To convert 'V' to its lowercase form youset bit 5: 'V' | 0x20 gives 'v'. Because uppercase (65–90) sorts before lowercase (97–122) in raw byte order, naive sorting places every capitalized wordahead of every lowercase one — the reason "Zebra" comes before "apple" unless you sort case-insensitively.

All encodings at a glance

Decimal86
Hexadecimal0x56
Octal0126
Binary01010110
HTML numeric entity&#86;
URL encoding%56
UTF-8 bytes0x56

Code snippets

JavaScript

String.fromCharCode(86); // "V"
86.toString(16); // "56"

Python

chr(86)           # 'V'
ord(chr(86))      # 86
hex(86)           # '0x56'

HTML

&#86;   <!-- numeric entity (no named entity for this character) -->

Programming notes

  • Case toggle: 'V' | 0x20 = 'v' (a single-bit change).
  • Letter test: c >= 'A' && c <= 'Z' — the uppercase block is contiguous (65–90).

Frequently asked questions

What character is ASCII code 86?

ASCII code 86 is the character 'V' (Latin Capital Letter V). In hexadecimal it is 0x56, in octal 0126, and in binary 01010110.

What is 0x56 in ASCII?

Hexadecimal 0x56 equals decimal 86, which is the character 'V' (Latin Capital Letter V). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0x56 = 86) and look up that code point.

How do I write the character with code 86 in code?

In JavaScript use String.fromCharCode(86); in Python use chr(86); in HTML use the numeric entity &#86;. In a URL it is percent-encoded as %56, and in UTF-8 it is stored as the byte sequence 0x56.

What is the lowercase form of 'V' in ASCII?

'V' is code 86; its lowercase counterpart 'v' is code 118. The two always differ by 32, so you can convert by adding 32 (or setting bit 0x20).

Nearby codes

Encode & convert this character