Succeeds Or Equivalent To

Shortcodes

Copy useful codes for succeeds or equivalent to symbol ≿ to use in websites, apps, blogs, and docs.

Unicode
U+227F
HTML Code
≿
HEX Code
≿
CSS Code
\227F
JS/JSON
\u227F
Unix/C/PHP/JAVA
0x227F
URL-encode
%E2%89%BF

Customize Succeeds Or Equivalent To

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

  

How to use Succeeds Or Equivalent To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≿</span>
HTML Code:
<span>&#8831;</span>
HEX Code:
<span>&#x227F;</span>

Add with CSS

.succeeds-or-equivalent-to::before {
  content: '\\227F';
}

Set it in JavaScript

document.querySelector('.succeeds-or-equivalent-to').textContent = '≿';
copied