ASCII 116
ASCII 116 is Small letter t, written t.
Every representation
| Character | t |
| Name | Small letter t |
| Decimal | 116 |
| Hexadecimal | 0x74 |
| Octal | 0164 |
| Binary | 01110100 |
| HTML entity | t |
| Escape sequence | \x74 |
| Unicode | U+0074 |
| Group | Letter |
What it is for
The small letter t. Its capital is T at 84, 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 116?
Small letter t, the character t. In hexadecimal it is 0x74, in octal 0164, and in binary 01110100.
How do I type ASCII 116?
Type t directly. In a string literal it can also be written \\x74, and in HTML as t.
Is ASCII 116 printable?
Yes. Codes 32 to 126 are the printable range, which is every character ASCII can actually display.
Nearby codes
- ASCII 109 — m
- ASCII 110 — n
- ASCII 111 — o
- ASCII 112 — p
- ASCII 113 — q
- ASCII 114 — r
- ASCII 115 — s
- ASCII 117 — u
- ASCII 118 — v
- ASCII 119 — w
- ASCII 120 — x
- ASCII 121 — y
- ASCII 122 — z
- ASCII 123 — {
Full ASCII table · Text to binary converter · Number base converter