Lower Half Circle

Shortcodes

Copy useful codes for lower half circle symbol ◡ to use in websites, apps, blogs, and docs.

Unicode
U+25E1
HTML Code
◡
HEX Code
◡
CSS Code
\25E1
JS/JSON
\u25E1
Unix/C/PHP/JAVA
0x25E1
URL-encode
%E2%97%A1

Customize Lower Half Circle

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

  

How to use Lower Half Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◡</span>
HTML Code:
<span>&#9697;</span>
HEX Code:
<span>&#x25E1;</span>

Add with CSS

.lower-half-circle::before {
  content: '\\25E1';
}

Set it in JavaScript

document.querySelector('.lower-half-circle').textContent = '◡';
copied