White Small Lozenge

Shortcodes

Copy useful codes for white small lozenge symbol ⬫ to use in websites, apps, blogs, and docs.

Unicode
U+2B2B
HTML Code
⬫
HEX Code
⬫
CSS Code
\2B2B
JS/JSON
\u2B2B
Unix/C/PHP/JAVA
0x2B2B
URL-encode
%E2%AC%AB

Customize White Small Lozenge

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

  

How to use White Small Lozenge Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬫</span>
HTML Code:
<span>&#11051;</span>
HEX Code:
<span>&#x2B2B;</span>

Add with CSS

.white-small-lozenge::before {
  content: '\\2B2B';
}

Set it in JavaScript

document.querySelector('.white-small-lozenge').textContent = '⬫';
copied