Similar Or Greater-than

Shortcodes

Copy useful codes for similar or greater-than symbol ⪞ to use in websites, apps, blogs, and docs.

Unicode
U+2A9E
HTML Code
⪞
HEX Code
⪞
CSS Code
\2A9E
JS/JSON
\u2A9E
Unix/C/PHP/JAVA
0x2A9E
URL-encode
%E2%AA%9E

Customize Similar Or Greater-than

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

  

How to use Similar Or Greater-than Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪞</span>
HTML Code:
<span>&#10910;</span>
HEX Code:
<span>&#x2A9E;</span>

Add with CSS

.similar-or-greater-than::before {
  content: '\\2A9E';
}

Set it in JavaScript

document.querySelector('.similar-or-greater-than').textContent = '⪞';
copied