Equal To Or Greater-than

Shortcodes

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

Unicode
U+22DD
HTML Code
⋝
HEX Code
⋝
CSS Code
\22DD
JS/JSON
\u22DD
Unix/C/PHP/JAVA
0x22DD
URL-encode
%E2%8B%9D

Customize Equal To Or Greater-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋝</span>
HTML Code:
<span>&#8925;</span>
HEX Code:
<span>&#x22DD;</span>

Add with CSS

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

Set it in JavaScript

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