Succeeds Above Not Almost Equal To

Shortcodes

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

Unicode
U+2ABA
HTML Code
⪺
HEX Code
⪺
CSS Code
\2ABA
JS/JSON
\u2ABA
Unix/C/PHP/JAVA
0x2ABA
URL-encode
%E2%AA%BA

Customize Succeeds Above Not Almost Equal To

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪺</span>
HTML Code:
<span>&#10938;</span>
HEX Code:
<span>&#x2ABA;</span>

Add with CSS

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

Set it in JavaScript

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