Greater-than Equal To Or Less-than

Shortcodes

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

Unicode
U+22DB
HTML Code
⋛
HEX Code
⋛
CSS Code
\22DB
JS/JSON
\u22DB
Unix/C/PHP/JAVA
0x22DB
URL-encode
%E2%8B%9B

Customize Greater-than Equal To Or Less-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋛</span>
HTML Code:
<span>&#8923;</span>
HEX Code:
<span>&#x22DB;</span>

Add with CSS

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

Set it in JavaScript

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