ASCII 110
ASCII 110 is Small letter n, written n.
Every representation
| Character | n |
| Name | Small letter n |
| Decimal | 110 |
| Hexadecimal | 0x6E |
| Octal | 0156 |
| Binary | 01101110 |
| HTML entity | n |
| Escape sequence | \x6E |
| Unicode | U+006E |
| Group | Letter |
What it is for
The small letter n. Its capital is N at 78, 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 110?
Small letter n, the character n. In hexadecimal it is 0x6E, in octal 0156, and in binary 01101110.
How do I type ASCII 110?
Type n directly. In a string literal it can also be written \\x6E, and in HTML as n.
Is ASCII 110 printable?
Yes. Codes 32 to 126 are the printable range, which is every character ASCII can actually display.
Nearby codes
- ASCII 103 — g
- ASCII 104 — h
- ASCII 105 — i
- ASCII 106 — j
- ASCII 107 — k
- ASCII 108 — l
- ASCII 109 — m
- ASCII 111 — o
- ASCII 112 — p
- ASCII 113 — q
- ASCII 114 — r
- ASCII 115 — s
- ASCII 116 — t
- ASCII 117 — u
Full ASCII table · Text to binary converter · Number base converter