Medium Black Circle

Shortcodes

Copy and paste codes for Medium Black Circle symbol ⚫ to use in your websites, apps, blogs, and more.

Unicode
U+26AB
HTML Code
⚫
HEX Code
⚫
CSS Code
\26AB
JS/JSON
\u26AB
Unix/C/PHP/JAVA
0x26AB
URL-encode
%E2%9A%AB
copied

Customize Medium Black Circle Symbol

Customize ⚫ symbol as you like and download Medium 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 Medium Black Circle symbol in HTML, CSS, and JS?

Insert ⚫ Medium Black Circle using HTML

1. Copy-paste Medium Black Circle directly:
<span>⚫</span>
2. HTML Decimal Code:
<span>&#9899;</span>
3. Hexadecimal Code:
<span>&#x26AB;</span>
Preview:

Add Medium Black Circle symbol with CSS

.medium-black-circle::before {
    content: '\\26AB';
}
Preview: Medium Black Circle

Medium Black Circle JavaScript Code

1. Direct Symbol:
document.querySelector('.medium-black-circle').textContent = '⚫';
2. Unicode Escape for ⚫:
document.querySelector('.medium-black-circle').textContent = '\u26AB';
Preview: