Reversed Pilcrow Sign

Shortcodes

Copy and paste codes for Reversed Pilcrow Sign symbol ⁋ to use in your websites, apps, blogs, and more.

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

Customize Reversed Pilcrow Sign Symbol

Customize ⁋ symbol as you like and download Reversed Pilcrow Sign as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Reversed Pilcrow Sign symbol in HTML, CSS, and JS?

Insert ⁋ Reversed Pilcrow Sign using HTML

1. Copy-paste Reversed Pilcrow Sign directly:
<span>⁋</span>
2. HTML Decimal Code:
<span>&#8267;</span>
3. Hexadecimal Code:
<span>&#x204B;</span>
Preview:

Add Reversed Pilcrow Sign symbol with CSS

.reversed-pilcrow-sign::before {
    content: '\\204B';
}
Preview: Reversed Pilcrow Sign

Reversed Pilcrow Sign JavaScript Code

1. Direct Symbol:
document.querySelector('.reversed-pilcrow-sign').textContent = '⁋';
2. Unicode Escape for ⁋:
document.querySelector('.reversed-pilcrow-sign').textContent = '\u204B';
Preview: