Back
Asciify Logo
Asciify
µ·

ASCII 182

Pilcrow (paragraph sign)Box T-junction pointing left, double vertical

ASCII 182 is ¶ on Windows and ╢ in old DOS.

¶ (Pilcrow) is byte 182 in Windows-1252, Unicode U+00B6. It marks a paragraph. If Word is showing one at the end of every paragraph, formatting marks are switched on: those pilcrows are a display aid, not text, and they neither print nor copy. In documentation it's the small link next to a heading. Sphinx, which builds the Python docs, adds ¶ as a permalink to each section, so clicking it gives you a URL that jumps straight there. US legal writing cites paragraphs with it, as in ¶ 12. In UTF-8 it's C2 B6, which misreads as ¶. The HTML entity is ¶.

╢ (Double Vertical, Single Left) is byte 182 in code page 437, the original IBM PC character set, and maps to Unicode U+2562. It sits on the right edge of a double-line box, where a single-line divider ─ (196) runs in from the left and meets the double side ║ (186). It's the reverse mix of ╡ at 181, which is why its entity ╢ flips the case. Code page 850 put  on this byte, so a frame drawn for 437 and viewed in 850 shows  along its right edge, a  that has nothing to do with the stray  of broken UTF-8. In UTF-8 it's E2 95 A2.

PunctuationBox Drawing

Technical Details

Technical Details

Code Example

</>
#include <stdio.h>
int main(void) {
/* On Windows (code page 1252) byte 182 is ¶.
Modern terminals expect UTF-8, so print the code point, not the byte. */
printf("\u00B6\n"); /* UTF-8: C2 B6 */
unsigned char b = 182; /* the raw Windows-1252 byte */
printf("%d 0x%02X\n", b, b); /* 182 0xB6 */
return 0;
}

Code Example

</>
#include <stdio.h>
int main(void) {
/* Byte 182 is ╢ only on a console using code page 437
(chcp 437 on Windows, or DOSBox). On a UTF-8 terminal the
lone byte 0xB6 is invalid and prints as garbage, often �. */
putchar(182);
/* char is signed on x86, so a plain char holding 0xB6 is -74.
Use unsigned char when you compare or index by byte value. */
char c = (char)182;
unsigned char u = 182;
printf("\n%d %d\n", c, u); /* -74 182 */
/* Portable: print the Unicode character as UTF-8 instead. */
printf("\u2562\n"); /* E2 95 A2 */
return 0;
}

How to Type It

Windows
Hold Alt and type 0182 on the numeric keypad, with Num Lock on. The leading zero picks the Windows code page. No numeric keypad? In Word, type 00B6 and press Alt+X.
Mac
Press Option+7.
Linux
In GNOME, or any desktop running IBus, press Ctrl+Shift+U, type b6, then Space. With a Compose key set up, press Compose, p, exclamation mark.
Phone
Tap the character at the top of this page to copy it.

How to Type It

Windows
Hold Alt and type 182 on the numeric keypad, with no leading zero. US PCs insert ╢, but PCs set to code page 850, common in Western Europe, insert Â. No numeric keypad? In Word, type 2562 and press Alt+X.
Mac
Press Control+Command+Space to open the Character Viewer, then search for "box drawings vertical double and left single".
Linux
In GNOME, or any desktop running IBus, press Ctrl+Shift+U, type 2562, then Space.
Phone
Phone keyboards have no key for it. Tap the character at the top of this page to copy it.

Frequently Asked Questions

  • Use § for a numbered section of a statute or code, as in 17 U.S.C. § 107, and ¶ for a numbered paragraph, as in a complaint or a contract. Both take a space before the number, and both double for plurals: §§ for several sections, ¶¶ for several paragraphs. In Windows-1252, § is byte 167.

  • Type ^p in the Find box, not the ¶ itself, which only matches a literal pilcrow typed into the text. ^p^p finds empty paragraphs, and replacing it with ^p collapses double breaks into single ones. With Use wildcards switched on, ^p stops working and you need ^13 instead.

  • The page prints the URL as HTML without escaping the &. &para is one of the old entity names browsers still accept without a semicolon, so &param reads as ¶ followed by m. Inside an href the browser leaves it alone, which is why the link works while the visible text is wrong. Escape on output, with htmlspecialchars in PHP or by setting textContent in JavaScript.

  • Set it in conf.py. `html_permalinks = False` removes the links entirely, and `html_permalinks_icon = '#'` keeps them but swaps the ¶ for another symbol or a small SVG. Both options arrived in Sphinx 3.5, so older projects used html_add_permalinks instead.

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026