Succeeds Above Not Equal To

Shortcodes

Copy useful codes for succeeds above not equal to symbol ⪶ to use in websites, apps, blogs, and docs.

Unicode
U+2AB6
HTML Code
⪶
HEX Code
⪶
CSS Code
\2AB6
JS/JSON
\u2AB6
Unix/C/PHP/JAVA
0x2AB6
URL-encode
%E2%AA%B6

Customize Succeeds Above Not Equal To

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪶</span>
HTML Code:
<span>&#10934;</span>
HEX Code:
<span>&#x2AB6;</span>

Add with CSS

.succeeds-above-not-equal-to::before {
  content: '\\2AB6';
}

Set it in JavaScript

document.querySelector('.succeeds-above-not-equal-to').textContent = '⪶';
copied