Precedes Above Not Almost Equal To

Shortcodes

Copy useful codes for precedes above not almost equal to symbol ⪹ to use in websites, apps, blogs, and docs.

Unicode
U+2AB9
HTML Code
⪹
HEX Code
⪹
CSS Code
\2AB9
JS/JSON
\u2AB9
Unix/C/PHP/JAVA
0x2AB9
URL-encode
%E2%AA%B9

Customize Precedes Above Not Almost Equal To

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

  

How to use Precedes Above Not Almost Equal To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪹</span>
HTML Code:
<span>&#10937;</span>
HEX Code:
<span>&#x2AB9;</span>

Add with CSS

.precedes-above-not-almost-equal-to::before {
  content: '\\2AB9';
}

Set it in JavaScript

document.querySelector('.precedes-above-not-almost-equal-to').textContent = '⪹';
copied