Circled Less-than

Shortcodes

Copy useful codes for circled less-than symbol ⧀ to use in websites, apps, blogs, and docs.

Unicode
U+29C0
HTML Code
⧀
HEX Code
⧀
CSS Code
\29C0
JS/JSON
\u29C0
Unix/C/PHP/JAVA
0x29C0
URL-encode
%E2%A7%80

Customize Circled Less-than

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

  

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

Insert in HTML

1. Direct symbol:
<span>⧀</span>
HTML Code:
<span>&#10688;</span>
HEX Code:
<span>&#x29C0;</span>

Add with CSS

.circled-less-than::before {
  content: '\\29C0';
}

Set it in JavaScript

document.querySelector('.circled-less-than').textContent = '⧀';
copied