Greater-than But Not Equivalent To

Shortcodes

Copy and paste codes for Greater-than But Not Equivalent To symbol ⋧ to use in your websites, apps, blogs, and more.

Unicode
U+22E7
HTML Code
⋧
HEX Code
⋧
CSS Code
\22E7
JS/JSON
\u22E7
Unix/C/PHP/JAVA
0x22E7
URL-encode
%E2%8B%A7
copied

Customize Greater-than But Not Equivalent To Symbol

Customize ⋧ symbol as you like and download Greater-than But Not Equivalent To 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 But Not Equivalent To symbol in HTML, CSS, and JS?

Insert ⋧ Greater-than But Not Equivalent To using HTML

1. Copy-paste Greater-than But Not Equivalent To directly:
<span>⋧</span>
2. HTML Decimal Code:
<span>&#8935;</span>
3. Hexadecimal Code:
<span>&#x22E7;</span>
Preview:

Add Greater-than But Not Equivalent To symbol with CSS

.greater-than-but-not-equivalent-to::before {
    content: '\\22E7';
}
Preview: Greater-than But Not Equivalent To

Greater-than But Not Equivalent To JavaScript Code

1. Direct Symbol:
document.querySelector('.greater-than-but-not-equivalent-to').textContent = '⋧';
2. Unicode Escape for ⋧:
document.querySelector('.greater-than-but-not-equivalent-to').textContent = '\u22E7';
Preview: