ASCII 74
Latin Capital Letter J (J)
Printable ASCII
Uppercase letter J.
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) -->