ASCII 106
Latin Small Letter J (j)
Printable ASCII
Lowercase letter j. ASCII code 106. The second-most-common loop counter after i.
Common uses & context
Thelowercase letter 'j' has ASCII code 106 (0x6A). Its uppercase twin 'J' sits exactly 32 code points away at 74. 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. Lowercase letter j. ASCII code 106. The second-most-common loop counter after i.
The lowercase Latin letters form the contiguous block 97–122, so range checks like c >= 'a' && c <= 'z' work without a lookup table. To convert 'j' to its uppercase form youclear 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 | 106 |
| Hexadecimal | 0x6A |
| Octal | 0152 |
| Binary | 01101010 |
| HTML numeric entity | j |
| URL encoding | %6A |
| UTF-8 bytes | 0x6A |
Code snippets
JavaScript
String.fromCharCode(106); // "j"
106.toString(16); // "6a"Python
chr(106) # 'j'
ord(chr(106)) # 106
hex(106) # '0x6a'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 lowercase block is contiguous (97–122).
Frequently asked questions
What character is ASCII code 106?
ASCII code 106 is the character 'j' (Latin Small Letter J). In hexadecimal it is 0x6A, in octal 0152, and in binary 01101010.
What is 0x6A in ASCII?
Hexadecimal 0x6A equals decimal 106, which is the character 'j' (Latin Small Letter J). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0x6A = 106) and look up that code point.
How do I write the character with code 106 in code?
In JavaScript use String.fromCharCode(106); in Python use chr(106); in HTML use the numeric entity j. In a URL it is percent-encoded as %6A, and in UTF-8 it is stored as the byte sequence 0x6A.
What is the uppercase form of 'j' in ASCII?
'j' is code 106; its uppercase counterpart 'J' is code 74. The two always differ by 32, so you can convert by subtracting 32 (or clearing bit 0x20).