Black Large Square

Shortcodes

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

Unicode
U+2B1B
HTML Code
⬛
HEX Code
⬛
CSS Code
\2B1B
JS/JSON
\u2B1B
Unix/C/PHP/JAVA
0x2B1B
URL-encode
%E2%AC%9B
copied

Customize Black Large Square Symbol

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

Insert ⬛ Black Large Square using HTML

1. Copy-paste Black Large Square directly:
<span>⬛</span>
2. HTML Decimal Code:
<span>&#11035;</span>
3. Hexadecimal Code:
<span>&#x2B1B;</span>
Preview:

Add Black Large Square symbol with CSS

.black-large-square::before {
    content: '\\2B1B';
}
Preview: Black Large Square

Black Large Square JavaScript Code

1. Direct Symbol:
document.querySelector('.black-large-square').textContent = '⬛';
2. Unicode Escape for ⬛:
document.querySelector('.black-large-square').textContent = '\u2B1B';
Preview: