Less-than With Dot

Shortcodes

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

Unicode
U+22D6
HTML Code
⋖
HEX Code
⋖
CSS Code
\22D6
JS/JSON
\u22D6
Unix/C/PHP/JAVA
0x22D6
URL-encode
%E2%8B%96

Customize Less-than With Dot

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋖</span>
HTML Code:
<span>&#8918;</span>
HEX Code:
<span>&#x22D6;</span>

Add with CSS

.less-than-with-dot::before {
  content: '\\22D6';
}

Set it in JavaScript

document.querySelector('.less-than-with-dot').textContent = '⋖';
copied