ASCII 98
Latin Small Letter B (b)
Printable ASCII
Lowercase letter b.
All encodings at a glance
| Decimal | 98 |
| Hexadecimal | 0x62 |
| Octal | 0142 |
| Binary | 01100010 |
| HTML numeric entity | b |
| URL encoding | %62 |
| UTF-8 bytes | 0x62 |
Code snippets
JavaScript
String.fromCharCode(98); // "b"
98.toString(16); // "62"Python
chr(98) # 'b'
ord(chr(98)) # 98
hex(98) # '0x62'HTML
b <!-- numeric entity (no named entity for this character) -->