Pilcrow Sign

Shortcodes

Copy useful codes for pilcrow sign ¶ to use in websites, apps, blogs, and docs.

Unicode
U+00B6
Alt Code
182
HTML Code
¶
HTML Entity
¶
HEX Code
¶
CSS Code
\00B6
JS/JSON
\u00B6
Unix/C/PHP/JAVA
0xB6
URL-encode
%C2%B6

Customize Pilcrow Sign

Customize ¶, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Pilcrow Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>¶</span>
HTML Code:
<span>&#182;</span>
HTML Entity:
<span>&para;</span>
HEX Code:
<span>&#x00B6;</span>

Add with CSS

.pilcrow-sign::before {
  content: '\\00B6';
}

Set it in JavaScript

document.querySelector('.pilcrow-sign').textContent = '¶';
copied