ASCII 113
Latin Small Letter Q (q)
Printable ASCII
Lowercase letter q.
All encodings at a glance
| Decimal | 113 |
| Hexadecimal | 0x71 |
| Octal | 0161 |
| Binary | 01110001 |
| HTML numeric entity | q |
| URL encoding | %71 |
| UTF-8 bytes | 0x71 |
Code snippets
JavaScript
String.fromCharCode(113); // "q"
113.toString(16); // "71"Python
chr(113) # 'q'
ord(chr(113)) # 113
hex(113) # '0x71'HTML
q <!-- numeric entity (no named entity for this character) -->