Lower Half Inverse White Circle

Shortcodes

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

Unicode
U+25DB
HTML Code
◛
HEX Code
◛
CSS Code
\25DB
JS/JSON
\u25DB
Unix/C/PHP/JAVA
0x25DB
URL-encode
%E2%97%9B

Customize Lower Half Inverse White Circle

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

  

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

Insert in HTML

1. Direct symbol:
<span>◛</span>
HTML Code:
<span>&#9691;</span>
HEX Code:
<span>&#x25DB;</span>

Add with CSS

.lower-half-inverse-white-circle::before {
  content: '\\25DB';
}

Set it in JavaScript

document.querySelector('.lower-half-inverse-white-circle').textContent = '◛';
copied