Nor

Shortcodes

Copy useful codes for nor symbol ⊽ to use in websites, apps, blogs, and docs.

Unicode
U+22BD
HTML Code
⊽
HEX Code
⊽
CSS Code
\22BD
JS/JSON
\u22BD
Unix/C/PHP/JAVA
0x22BD
URL-encode
%E2%8A%BD

Customize Nor

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊽</span>
HTML Code:
<span>&#8893;</span>
HEX Code:
<span>&#x22BD;</span>

Add with CSS

.nor::before {
  content: '\\22BD';
}

Set it in JavaScript

document.querySelector('.nor').textContent = '⊽';
copied