Double-line Slanted Less-than Or Equal To

Shortcodes

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

Unicode
U+2AF9
HTML Code
⫹
HEX Code
⫹
CSS Code
\2AF9
JS/JSON
\u2AF9
Unix/C/PHP/JAVA
0x2AF9
URL-encode
%E2%AB%B9

Customize Double-line Slanted Less-than Or Equal To

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫹</span>
HTML Code:
<span>&#11001;</span>
HEX Code:
<span>&#x2AF9;</span>

Add with CSS

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

Set it in JavaScript

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