Black Small Square

Shortcodes

Copy and paste codes for Black Small Square symbol ▪ to use in your websites, apps, blogs, and more.

Unicode
U+25AA
HTML Code
▪
HEX Code
▪
CSS Code
\25AA
JS/JSON
\u25AA
Unix/C/PHP/JAVA
0x25AA
URL-encode
%E2%96%AA
copied

Customize Black Small Square Symbol

Customize ▪ symbol as you like and download Black Small Square 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 Black Small Square symbol in HTML, CSS, and JS?

Insert ▪ Black Small Square using HTML

1. Copy-paste Black Small Square directly:
<span>▪</span>
2. HTML Decimal Code:
<span>&#9642;</span>
3. Hexadecimal Code:
<span>&#x25AA;</span>
Preview:

Add Black Small Square symbol with CSS

.black-small-square::before {
    content: '\\25AA';
}
Preview: Black Small Square

Black Small Square JavaScript Code

1. Direct Symbol:
document.querySelector('.black-small-square').textContent = '▪';
2. Unicode Escape for ▪:
document.querySelector('.black-small-square').textContent = '\u25AA';
Preview: