Precedes Or Equivalent To

Shortcodes

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

Unicode
U+227E
HTML Code
≾
HEX Code
≾
CSS Code
\227E
JS/JSON
\u227E
Unix/C/PHP/JAVA
0x227E
URL-encode
%E2%89%BE

Customize Precedes Or Equivalent To

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

  

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

Insert in HTML

1. Direct symbol:
<span>≾</span>
HTML Code:
<span>&#8830;</span>
HEX Code:
<span>&#x227E;</span>

Add with CSS

.precedes-or-equivalent-to::before {
  content: '\\227E';
}

Set it in JavaScript

document.querySelector('.precedes-or-equivalent-to').textContent = '≾';
copied