ASCII 86
Latin Capital Letter V (V)
Printable ASCII
Uppercase letter V.
All encodings at a glance
| Decimal | 86 |
| Hexadecimal | 0x56 |
| Octal | 0126 |
| Binary | 01010110 |
| HTML numeric entity | V |
| URL encoding | %56 |
| UTF-8 bytes | 0x56 |
Code snippets
JavaScript
String.fromCharCode(86); // "V"
86.toString(16); // "56"Python
chr(86) # 'V'
ord(chr(86)) # 86
hex(86) # '0x56'HTML
V <!-- numeric entity (no named entity for this character) -->