Pitchfork

Shortcodes

Copy and paste codes for Pitchfork symbol ⋔ to use in your websites, apps, blogs, and more.

Unicode
U+22D4
HTML Code
⋔
HEX Code
⋔
CSS Code
\22D4
JS/JSON
\u22D4
Unix/C/PHP/JAVA
0x22D4
URL-encode
%E2%8B%94
copied

Customize Pitchfork Symbol

Customize ⋔ symbol as you like and download Pitchfork 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 Pitchfork symbol in HTML, CSS, and JS?

Insert ⋔ Pitchfork using HTML

1. Copy-paste Pitchfork directly:
<span>⋔</span>
2. HTML Decimal Code:
<span>&#8916;</span>
3. Hexadecimal Code:
<span>&#x22D4;</span>
Preview:

Add Pitchfork symbol with CSS

.pitchfork::before {
    content: '\\22D4';
}
Preview: Pitchfork

Pitchfork JavaScript Code

1. Direct Symbol:
document.querySelector('.pitchfork').textContent = '⋔';
2. Unicode Escape for ⋔:
document.querySelector('.pitchfork').textContent = '\u22D4';
Preview: