Right Half Black Circle

Shortcodes

Copy and paste codes for Right Half Black Circle symbol ◗ to use in your websites, apps, blogs, and more.

Unicode
U+25D7
HTML Code
◗
HEX Code
◗
CSS Code
\25D7
JS/JSON
\u25D7
Unix/C/PHP/JAVA
0x25D7
URL-encode
%E2%97%97
copied

Customize Right Half Black Circle Symbol

Customize ◗ symbol as you like and download Right Half Black Circle as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Right Half Black Circle symbol in HTML, CSS, and JS?

Insert ◗ Right Half Black Circle using HTML

1. Copy-paste Right Half Black Circle directly:
<span>◗</span>
2. HTML Decimal Code:
<span>&#9687;</span>
3. Hexadecimal Code:
<span>&#x25D7;</span>
Preview:

Add Right Half Black Circle symbol with CSS

.right-half-black-circle::before {
    content: '\\25D7';
}
Preview: Right Half Black Circle

Right Half Black Circle JavaScript Code

1. Direct Symbol:
document.querySelector('.right-half-black-circle').textContent = '◗';
2. Unicode Escape for ◗:
document.querySelector('.right-half-black-circle').textContent = '\u25D7';
Preview: