Double-line Slanted Equal To Or Greater-than

Shortcodes

Copy useful codes for double-line slanted equal to or greater-than symbol ⪜ to use in websites, apps, blogs, and docs.

Unicode
U+2A9C
HTML Code
⪜
HEX Code
⪜
CSS Code
\2A9C
JS/JSON
\u2A9C
Unix/C/PHP/JAVA
0x2A9C
URL-encode
%E2%AA%9C

Customize Double-line Slanted Equal To Or Greater-than

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

  

How to use Double-line Slanted Equal To Or Greater-than Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪜</span>
HTML Code:
<span>&#10908;</span>
HEX Code:
<span>&#x2A9C;</span>

Add with CSS

.double-line-slanted-equal-to-or-greater-than::before {
  content: '\\2A9C';
}

Set it in JavaScript

document.querySelector('.double-line-slanted-equal-to-or-greater-than').textContent = '⪜';
copied