ASCII 113
ASCII 113 is Small letter q, written q.
Every representation
| Character | q |
| Name | Small letter q |
| Decimal | 113 |
| Hexadecimal | 0x71 |
| Octal | 0161 |
| Binary | 01110001 |
| HTML entity | q |
| Escape sequence | \x71 |
| Unicode | U+0071 |
| Group | Letter |
What it is for
The small letter q. Its capital is Q at 81, exactly 32 lower — the difference is bit 5, which is why case conversion is a bitwise operation.
Where the number comes from
The alphabet was placed so that capitals start at 65 and lowercase at 97 — exactly 32 apart, a single bit. Changing case is therefore c ^ 32, and this was a deliberate design decision rather than a coincidence.
Frequently asked questions
What is ASCII 113?
Small letter q, the character q. In hexadecimal it is 0x71, in octal 0161, and in binary 01110001.
How do I type ASCII 113?
Type q directly. In a string literal it can also be written \\x71, and in HTML as q.
Is ASCII 113 printable?
Yes. Codes 32 to 126 are the printable range, which is every character ASCII can actually display.
Nearby codes
- ASCII 106 — j
- ASCII 107 — k
- ASCII 108 — l
- ASCII 109 — m
- ASCII 110 — n
- ASCII 111 — o
- ASCII 112 — p
- ASCII 114 — r
- ASCII 115 — s
- ASCII 116 — t
- ASCII 117 — u
- ASCII 118 — v
- ASCII 119 — w
- ASCII 120 — x
Full ASCII table · Text to binary converter · Number base converter