Greater-than With Dot

Shortcodes

Copy useful codes for greater-than with dot symbol ⋗ to use in websites, apps, blogs, and docs.

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

Customize Greater-than With Dot

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

  

How to use Greater-than With Dot Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋗</span>
HTML Code:
<span>&#8919;</span>
HEX Code:
<span>&#x22D7;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.greater-than-with-dot').textContent = '⋗';
copied