Succeeds Under Relation

Shortcodes

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

Unicode
U+22B1
HTML Code
⊱
HEX Code
⊱
CSS Code
\22B1
JS/JSON
\u22B1
Unix/C/PHP/JAVA
0x22B1
URL-encode
%E2%8A%B1

Customize Succeeds Under Relation

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊱</span>
HTML Code:
<span>&#8881;</span>
HEX Code:
<span>&#x22B1;</span>

Add with CSS

.succeeds-under-relation::before {
  content: '\\22B1';
}

Set it in JavaScript

document.querySelector('.succeeds-under-relation').textContent = '⊱';
copied