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