Nonforking

Shortcodes

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

Unicode
U+2ADD
HTML Code
⫝
HEX Code
⫝
CSS Code
\2ADD
JS/JSON
\u2ADD
Unix/C/PHP/JAVA
0x2ADD
URL-encode
%E2%AB%9D
copied

Customize Nonforking Symbol

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

Insert ⫝ Nonforking using HTML

1. Copy-paste Nonforking directly:
<span>⫝</span>
2. HTML Decimal Code:
<span>&#10973;</span>
3. Hexadecimal Code:
<span>&#x2ADD;</span>
Preview:

Add Nonforking symbol with CSS

.nonforking::before {
    content: '\\2ADD';
}
Preview: Nonforking

Nonforking JavaScript Code

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