Does Not Force

Shortcodes

Copy useful codes for does not force symbol ⊮ to use in websites, apps, blogs, and docs.

Unicode
U+22AE
HTML Code
⊮
HEX Code
⊮
CSS Code
\22AE
JS/JSON
\u22AE
Unix/C/PHP/JAVA
0x22AE
URL-encode
%E2%8A%AE

Customize Does Not Force

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

  

How to use Does Not Force Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊮</span>
HTML Code:
<span>&#8878;</span>
HEX Code:
<span>&#x22AE;</span>

Add with CSS

.does-not-force::before {
  content: '\\22AE';
}

Set it in JavaScript

document.querySelector('.does-not-force').textContent = '⊮';
copied