ASCII 66
Latin Capital Letter B (B)
Printable ASCII
Uppercase letter B.
All encodings at a glance
| Decimal | 66 |
| Hexadecimal | 0x42 |
| Octal | 0102 |
| Binary | 01000010 |
| HTML numeric entity | B |
| URL encoding | %42 |
| UTF-8 bytes | 0x42 |
Code snippets
JavaScript
String.fromCharCode(66); // "B"
66.toString(16); // "42"Python
chr(66) # 'B'
ord(chr(66)) # 66
hex(66) # '0x42'HTML
B <!-- numeric entity (no named entity for this character) -->