DevKits

ASCII 183

Middle Dot (·)

Latin-1 Supplement

Latin-1 character.

All encodings at a glance

Decimal183
Hexadecimal0xB7
Octal0267
Binary10110111
HTML numeric entity·
HTML named entity·
URL encoding%B7
UTF-8 bytes0xC2 0xB7

Code snippets

JavaScript

String.fromCharCode(183); // "·"
183.toString(16); // "b7"

Python

chr(183)           # control char ·
ord(chr(183))      # 183
hex(183)           # '0xb7'

HTML

&middot;   <!-- named entity -->
&#183;   <!-- numeric entity -->

Unicode & UTF-8 note

In Unicode this is U+00B7. In UTF-8 it encodes to the byte sequence 0xC2 0xB7. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xB7, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Nearby codes