ASCII 74
Latin Capital Letter J (J)
Printable ASCII
Uppercase letter J. ASCII code 74. Lowercase 'j' is 106. All A-Z to a-z conversions share the same +32 offset.
Common uses & context
Theuppercase letter 'J' has ASCII code 74 (0x4A). Its lowercase twin 'j' sits exactly 32 code points away at 106. That constant gap of 32 — a single bit, 0x20 — is why changing letter case is one of the cheapest operations a CPU can do: you flip or mask one bit rather than looking anything up. Uppercase letter J. ASCII code 74. Lowercase 'j' is 106. All A-Z to a-z conversions share the same +32 offset.
The uppercase Latin letters form the contiguous block 65–90, so range checks like c >= 'A' && c <= 'Z' work without a lookup table. To convert 'J' to its lowercase form youset bit 5: 'J' | 0x20 gives 'j'. Because uppercase (65–90) sorts before lowercase (97–122) in raw byte order, naive sorting places every capitalized wordahead of every lowercase one — the reason "Zebra" comes before "apple" unless you sort case-insensitively.
All encodings at a glance
| Decimal | 74 |
| Hexadecimal | 0x4A |
| Octal | 0112 |
| Binary | 01001010 |
| HTML numeric entity | J |
| URL encoding | %4A |
| UTF-8 bytes | 0x4A |
Code snippets
JavaScript
String.fromCharCode(74); // "J"
74.toString(16); // "4a"Python
chr(74) # 'J'
ord(chr(74)) # 74
hex(74) # '0x4a'HTML
J <!-- numeric entity (no named entity for this character) -->Programming notes
- ▸Case toggle: 'J' | 0x20 = 'j' (a single-bit change).
- ▸Letter test: c >= 'A' && c <= 'Z' — the uppercase block is contiguous (65–90).
Frequently asked questions
What character is ASCII code 74?
ASCII code 74 is the character 'J' (Latin Capital Letter J). In hexadecimal it is 0x4A, in octal 0112, and in binary 01001010.
What is 0x4A in ASCII?
Hexadecimal 0x4A equals decimal 74, which is the character 'J' (Latin Capital Letter J). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0x4A = 74) and look up that code point.
How do I write the character with code 74 in code?
In JavaScript use String.fromCharCode(74); in Python use chr(74); in HTML use the numeric entity J. In a URL it is percent-encoded as %4A, and in UTF-8 it is stored as the byte sequence 0x4A.
What is the lowercase form of 'J' in ASCII?
'J' is code 74; its lowercase counterpart 'j' is code 106. The two always differ by 32, so you can convert by adding 32 (or setting bit 0x20).