Nonforking

Shortcodes

Copy useful codes for nonforking symbol ⫝ to use in websites, apps, blogs, and docs.

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

Customize Nonforking

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

  

How to use Nonforking Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫝</span>
HTML Code:
<span>&#10973;</span>
HEX Code:
<span>&#x2ADD;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.nonforking').textContent = '⫝';
copied