Precedes Under Relation

Shortcodes

Copy useful codes for precedes under relation symbol ⊰ to use in websites, apps, blogs, and docs.

Unicode
U+22B0
HTML Code
⊰
HEX Code
⊰
CSS Code
\22B0
JS/JSON
\u22B0
Unix/C/PHP/JAVA
0x22B0
URL-encode
%E2%8A%B0

Customize Precedes Under Relation

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

  

How to use Precedes Under Relation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊰</span>
HTML Code:
<span>&#8880;</span>
HEX Code:
<span>&#x22B0;</span>

Add with CSS

.precedes-under-relation::before {
  content: '\\22B0';
}

Set it in JavaScript

document.querySelector('.precedes-under-relation').textContent = '⊰';
copied