DevKits

ASCII 98

Latin Small Letter B (b)

Printable ASCII

Lowercase letter b.

All encodings at a glance

Decimal98
Hexadecimal0x62
Octal0142
Binary01100010
HTML numeric entityb
URL encoding%62
UTF-8 bytes0x62

Code snippets

JavaScript

String.fromCharCode(98); // "b"
98.toString(16); // "62"

Python

chr(98)           # 'b'
ord(chr(98))      # 98
hex(98)           # '0x62'

HTML

&#98;   <!-- numeric entity (no named entity for this character) -->

Nearby codes