DevKits

ASCII 81

Latin Capital Letter Q (Q)

Printable ASCII

Uppercase letter Q.

All encodings at a glance

Decimal81
Hexadecimal0x51
Octal0121
Binary01010001
HTML numeric entityQ
URL encoding%51
UTF-8 bytes0x51

Code snippets

JavaScript

String.fromCharCode(81); // "Q"
81.toString(16); // "51"

Python

chr(81)           # 'Q'
ord(chr(81))      # 81
hex(81)           # '0x51'

HTML

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

Nearby codes