Greater-than With Dot

Shortcodes

Copy and paste codes for Greater-than With Dot symbol ⋗ to use in your websites, apps, blogs, and more.

Unicode
U+22D7
HTML Code
⋗
HEX Code
⋗
CSS Code
\22D7
JS/JSON
\u22D7
Unix/C/PHP/JAVA
0x22D7
URL-encode
%E2%8B%97
copied

Customize Greater-than With Dot Symbol

Customize ⋗ symbol as you like and download Greater-than With Dot 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 With Dot symbol in HTML, CSS, and JS?

Insert ⋗ Greater-than With Dot using HTML

1. Copy-paste Greater-than With Dot directly:
<span>⋗</span>
2. HTML Decimal Code:
<span>&#8919;</span>
3. Hexadecimal Code:
<span>&#x22D7;</span>
Preview:

Add Greater-than With Dot symbol with CSS

.greater-than-with-dot::before {
    content: '\\22D7';
}
Preview: Greater-than With Dot

Greater-than With Dot JavaScript Code

1. Direct Symbol:
document.querySelector('.greater-than-with-dot').textContent = '⋗';
2. Unicode Escape for ⋗:
document.querySelector('.greater-than-with-dot').textContent = '\u22D7';
Preview: