DevKits

ASCII 86

Latin Capital Letter V (V)

Printable ASCII

Uppercase letter V.

All encodings at a glance

Decimal86
Hexadecimal0x56
Octal0126
Binary01010110
HTML numeric entityV
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) -->

Nearby codes