ASCII 102
ASCII 102 is Small letter f, written f.
Every representation
| Character | f |
| Name | Small letter f |
| Decimal | 102 |
| Hexadecimal | 0x66 |
| Octal | 0146 |
| Binary | 01100110 |
| HTML entity | f |
| Escape sequence | \x66 |
| Unicode | U+0066 |
| Group | Letter |
What it is for
The small letter f. Its capital is F at 70, 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 102?
Small letter f, the character f. In hexadecimal it is 0x66, in octal 0146, and in binary 01100110.
How do I type ASCII 102?
Type f directly. In a string literal it can also be written \\x66, and in HTML as f.
Is ASCII 102 printable?
Yes. Codes 32 to 126 are the printable range, which is every character ASCII can actually display.
Nearby codes
- ASCII 95 — _
- ASCII 96 — `
- ASCII 97 — a
- ASCII 98 — b
- ASCII 99 — c
- ASCII 100 — d
- ASCII 101 — e
- ASCII 103 — g
- ASCII 104 — h
- ASCII 105 — i
- ASCII 106 — j
- ASCII 107 — k
- ASCII 108 — l
- ASCII 109 — m
Full ASCII table · Text to binary converter · Number base converter