Does Not Precede

Shortcodes

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

Unicode
U+2280
HTML Code
⊀
HEX Code
⊀
CSS Code
\2280
JS/JSON
\u2280
Unix/C/PHP/JAVA
0x2280
URL-encode
%E2%8A%80

Customize Does Not Precede

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊀</span>
HTML Code:
<span>&#8832;</span>
HEX Code:
<span>&#x2280;</span>

Add with CSS

.does-not-precede::before {
  content: '\\2280';
}

Set it in JavaScript

document.querySelector('.does-not-precede').textContent = '⊀';
copied