ASCII 74
ASCII 74 is Capital letter J, written J.
Every representation
| Character | J |
| Name | Capital letter J |
| Decimal | 74 |
| Hexadecimal | 0x4A |
| Octal | 0112 |
| Binary | 01001010 |
| HTML entity | J |
| Escape sequence | \x4A |
| Unicode | U+004A |
| Group | Letter |
What it is for
The capital letter J. Capitals run from 65 to 90 and their lowercase counterparts from 97 to 122, exactly 32 apart, so changing case is a single bit flip.
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 74?
Capital letter J, the character J. In hexadecimal it is 0x4A, in octal 0112, and in binary 01001010.
How do I type ASCII 74?
Type J directly. In a string literal it can also be written \\x4A, and in HTML as J.
Is ASCII 74 printable?
Yes. Codes 32 to 126 are the printable range, which is every character ASCII can actually display.
Nearby codes
- ASCII 67 — C
- ASCII 68 — D
- ASCII 69 — E
- ASCII 70 — F
- ASCII 71 — G
- ASCII 72 — H
- ASCII 73 — I
- ASCII 75 — K
- ASCII 76 — L
- ASCII 77 — M
- ASCII 78 — N
- ASCII 79 — O
- ASCII 80 — P
- ASCII 81 — Q
Full ASCII table · Text to binary converter · Number base converter