Circle With Lower Half Black

Shortcodes

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

Unicode
U+25D2
HTML Code
◒
HEX Code
◒
CSS Code
\25D2
JS/JSON
\u25D2
Unix/C/PHP/JAVA
0x25D2
URL-encode
%E2%97%92

Customize Circle With Lower Half Black

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

  

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

Insert in HTML

1. Direct symbol:
<span>◒</span>
HTML Code:
<span>&#9682;</span>
HEX Code:
<span>&#x25D2;</span>

Add with CSS

.circle-with-lower-half-black::before {
  content: '\\25D2';
}

Set it in JavaScript

document.querySelector('.circle-with-lower-half-black').textContent = '◒';
copied