White Large Square

Shortcodes

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

Unicode
U+2B1C
HTML Code
⬜
HEX Code
⬜
CSS Code
\2B1C
JS/JSON
\u2B1C
Unix/C/PHP/JAVA
0x2B1C
URL-encode
%E2%AC%9C

Customize White Large Square

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

  

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

Insert in HTML

1. Direct symbol:
<span>⬜</span>
HTML Code:
<span>&#11036;</span>
HEX Code:
<span>&#x2B1C;</span>

Add with CSS

.white-large-square::before {
  content: '\\2B1C';
}

Set it in JavaScript

document.querySelector('.white-large-square').textContent = '⬜';
copied