Forking

Shortcodes

Copy and paste codes for Forking symbol ⫝̸ to use in your websites, apps, blogs, and more.

Unicode
U+2ADC
HTML Code
⫝̸
HEX Code
⫝̸
CSS Code
\2ADC
JS/JSON
\u2ADC
Unix/C/PHP/JAVA
0x2ADC
URL-encode
%E2%AB%9C
copied

Customize Forking Symbol

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

Insert ⫝̸ Forking using HTML

1. Copy-paste Forking directly:
<span>⫝̸</span>
2. HTML Decimal Code:
<span>&#10972;</span>
3. Hexadecimal Code:
<span>&#x2ADC;</span>
Preview:

Add Forking symbol with CSS

.forking::before {
    content: '\\2ADC';
}
Preview: Forking

Forking JavaScript Code

1. Direct Symbol:
document.querySelector('.forking').textContent = '⫝̸';
2. Unicode Escape for ⫝̸:
document.querySelector('.forking').textContent = '\u2ADC';
Preview: