Greater-than Or Slanted Equal To

Shortcodes

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

Unicode
U+2A7E
HTML Code
⩾
HEX Code
⩾
CSS Code
\2A7E
JS/JSON
\u2A7E
Unix/C/PHP/JAVA
0x2A7E
URL-encode
%E2%A9%BE

Customize Greater-than Or Slanted Equal To

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩾</span>
HTML Code:
<span>&#10878;</span>
HEX Code:
<span>&#x2A7E;</span>

Add with CSS

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

Set it in JavaScript

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