ASCII 118
Latin Small Letter V (v)
Printable ASCII
Lowercase letter v.
All encodings at a glance
| Decimal | 118 |
| Hexadecimal | 0x76 |
| Octal | 0166 |
| Binary | 01110110 |
| HTML numeric entity | v |
| URL encoding | %76 |
| UTF-8 bytes | 0x76 |
Code snippets
JavaScript
String.fromCharCode(118); // "v"
118.toString(16); // "76"Python
chr(118) # 'v'
ord(chr(118)) # 118
hex(118) # '0x76'HTML
v <!-- numeric entity (no named entity for this character) -->