DevKits

ASCII 66

Latin Capital Letter B (B)

Printable ASCII

Uppercase letter B.

All encodings at a glance

Decimal66
Hexadecimal0x42
Octal0102
Binary01000010
HTML numeric entityB
URL encoding%42
UTF-8 bytes0x42

Code snippets

JavaScript

String.fromCharCode(66); // "B"
66.toString(16); // "42"

Python

chr(66)           # 'B'
ord(chr(66))      # 66
hex(66)           # '0x42'

HTML

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

Nearby codes