Greater-than Equal To Or Less-than

Shortcodes

Copy and paste codes for Greater-than Equal To Or Less-than symbol ⋛ to use in your websites, apps, blogs, and more.

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

Customize Greater-than Equal To Or Less-than Symbol

Customize ⋛ symbol as you like and download Greater-than Equal To Or Less-than as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Greater-than Equal To Or Less-than symbol in HTML, CSS, and JS?

Insert ⋛ Greater-than Equal To Or Less-than using HTML

1. Copy-paste Greater-than Equal To Or Less-than directly:
<span>⋛</span>
2. HTML Decimal Code:
<span>&#8923;</span>
3. Hexadecimal Code:
<span>&#x22DB;</span>
Preview:

Add Greater-than Equal To Or Less-than symbol with CSS

.greater-than-equal-to-or-less-than::before {
    content: '\\22DB';
}
Preview: Greater-than Equal To Or Less-than

Greater-than Equal To Or Less-than JavaScript Code

1. Direct Symbol:
document.querySelector('.greater-than-equal-to-or-less-than').textContent = '⋛';
2. Unicode Escape for ⋛:
document.querySelector('.greater-than-equal-to-or-less-than').textContent = '\u22DB';
Preview: