ASCII 106
Latin Small Letter J (j)
Printable ASCII
Lowercase letter j.
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) -->