DevKits

ASCII 182

Pilcrow Sign (¶)

Latin-1 Supplement

Latin-1 character.

Common uses & context

Decimal 182 (0xB6) is Pilcrow Sign, part of the Latin-1 Supplement (128–255). Latin-1 character. It renders as '¶' and its binary byte is 10110110.

This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) '¶' is the single byte 0xB6. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC2 0xB6. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00B6, and in HTML you can write it as ¶ or ¶.

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 -->

Programming notes

  • Single byte 0xB6 in Latin-1, but the multi-byte sequence 0xC2 0xB6 in UTF-8 — never assume one byte per character above code 127.
  • Unicode code point U+00B6; HTML entity &para;.
  • If '¶' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.

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.

Frequently asked questions

What character is ASCII code 182?

ASCII code 182 is the character '¶' (Pilcrow Sign). In hexadecimal it is 0xB6, in octal 0266, and in binary 10110110.

What is 0xB6 in ASCII?

Hexadecimal 0xB6 equals decimal 182, which is the character '¶' (Pilcrow Sign). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xB6 = 182) and look up that code point.

How do I write the character with code 182 in code?

In JavaScript use String.fromCharCode(182); in Python use chr(182); in HTML use the numeric entity &#182; or the named entity &para;. In a URL it is percent-encoded as %B6, and in UTF-8 it is stored as the byte sequence 0xC2 0xB6.

Is '¶' part of standard ASCII?

No. Standard ASCII covers codes 0–127 only. '¶' is code 182, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xB6 in Latin-1 but a multi-byte sequence (0xC2 0xB6) in UTF-8.

Nearby codes

Encode & convert this character