Less-than With Dot

Shortcodes

Copy and paste codes for Less-than With Dot symbol ⋖ to use in your websites, apps, blogs, and more.

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

Customize Less-than With Dot Symbol

Customize ⋖ symbol as you like and download Less-than With Dot as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Less-than With Dot symbol in HTML, CSS, and JS?

Insert ⋖ Less-than With Dot using HTML

1. Copy-paste Less-than With Dot directly:
<span>⋖</span>
2. HTML Decimal Code:
<span>&#8918;</span>
3. Hexadecimal Code:
<span>&#x22D6;</span>
Preview:

Add Less-than With Dot symbol with CSS

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

Less-than With Dot JavaScript Code

1. Direct Symbol:
document.querySelector('.less-than-with-dot').textContent = '⋖';
2. Unicode Escape for ⋖:
document.querySelector('.less-than-with-dot').textContent = '\u22D6';
Preview: