DevKits

ASCII 182

Pilcrow Sign (¶)

Latin-1 Supplement

Latin-1 character.

All encodings at a glance

Decimal182
Hexadecimal0xB6
Octal0266
Binary10110110
HTML numeric entity¶
HTML named entity¶
URL encoding%B6
UTF-8 bytes0xC2 0xB6

Code snippets

JavaScript

String.fromCharCode(182); // "¶"
182.toString(16); // "b6"

Python

chr(182)           # control char ¶
ord(chr(182))      # 182
hex(182)           # '0xb6'

HTML

&para;   <!-- named entity -->
&#182;   <!-- numeric entity -->

Unicode & UTF-8 note

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

Nearby codes