Less-than Or Slanted Equal To With Dot Inside

⩿

Shortcodes

Copy useful codes for less-than or slanted equal to with dot inside symbol ⩿ to use in websites, apps, blogs, and docs.

Unicode
U+2A7F
HTML Code
⩿
HEX Code
⩿
CSS Code
\2A7F
JS/JSON
\u2A7F
Unix/C/PHP/JAVA
0x2A7F
URL-encode
%E2%A9%BF

Customize Less-than Or Slanted Equal To With Dot Inside

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

⩿
  

How to use Less-than Or Slanted Equal To With Dot Inside Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩿</span>
HTML Code:
<span>&#10879;</span>
HEX Code:
<span>&#x2A7F;</span>

Add with CSS

.less-than-or-slanted-equal-to-with-dot-inside::before {
  content: '\\2A7F';
}

Set it in JavaScript

document.querySelector('.less-than-or-slanted-equal-to-with-dot-inside').textContent = '⩿';
copied