Less-than With Circle Inside

Shortcodes

Copy useful codes for less-than with circle inside symbol ⩹ to use in websites, apps, blogs, and docs.

Unicode
U+2A79
HTML Code
⩹
HEX Code
⩹
CSS Code
\2A79
JS/JSON
\u2A79
Unix/C/PHP/JAVA
0x2A79
URL-encode
%E2%A9%B9

Customize Less-than With Circle Inside

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩹</span>
HTML Code:
<span>&#10873;</span>
HEX Code:
<span>&#x2A79;</span>

Add with CSS

.less-than-with-circle-inside::before {
  content: '\\2A79';
}

Set it in JavaScript

document.querySelector('.less-than-with-circle-inside').textContent = '⩹';
copied