Less-than Equal To Or Greater-than

Shortcodes

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

Unicode
U+22DA
HTML Code
⋚
HEX Code
⋚
CSS Code
\22DA
JS/JSON
\u22DA
Unix/C/PHP/JAVA
0x22DA
URL-encode
%E2%8B%9A

Customize Less-than Equal To Or Greater-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋚</span>
HTML Code:
<span>&#8922;</span>
HEX Code:
<span>&#x22DA;</span>

Add with CSS

.less-than-equal-to-or-greater-than::before {
  content: '\\22DA';
}

Set it in JavaScript

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