Black Large Square

Shortcodes

Copy useful codes for black large square symbol ⬛ to use in websites, apps, blogs, and docs.

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

Customize Black Large Square

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

  

How to use Black Large Square Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬛</span>
HTML Code:
<span>&#11035;</span>
HEX Code:
<span>&#x2B1B;</span>

Add with CSS

.black-large-square::before {
  content: '\\2B1B';
}

Set it in JavaScript

document.querySelector('.black-large-square').textContent = '⬛';
copied