Reversed Pilcrow Sign

Shortcodes

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

Unicode
U+204B
HTML Code
⁋
HEX Code
⁋
CSS Code
\204B
JS/JSON
\u204B
Unix/C/PHP/JAVA
0x204B
URL-encode
%E2%81%8B

Customize Reversed Pilcrow Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁋</span>
HTML Code:
<span>&#8267;</span>
HEX Code:
<span>&#x204B;</span>

Add with CSS

.reversed-pilcrow-sign::before {
  content: '\\204B';
}

Set it in JavaScript

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