Double-line Slanted Greater-than Or Equal To

Shortcodes

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

Unicode
U+2AFA
HTML Code
⫺
HEX Code
⫺
CSS Code
\2AFA
JS/JSON
\u2AFA
Unix/C/PHP/JAVA
0x2AFA
URL-encode
%E2%AB%BA

Customize Double-line Slanted Greater-than Or Equal To

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫺</span>
HTML Code:
<span>&#11002;</span>
HEX Code:
<span>&#x2AFA;</span>

Add with CSS

.double-line-slanted-greater-than-or-equal-to::before {
  content: '\\2AFA';
}

Set it in JavaScript

document.querySelector('.double-line-slanted-greater-than-or-equal-to').textContent = '⫺';
copied