White Pentagon

Shortcodes

Copy useful codes for white pentagon symbol ⬠ to use in websites, apps, blogs, and docs.

Unicode
U+2B20
HTML Code
⬠
HEX Code
⬠
CSS Code
\2B20
JS/JSON
\u2B20
Unix/C/PHP/JAVA
0x2B20
URL-encode
%E2%AC%A0

Customize White Pentagon

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

  

How to use White Pentagon Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬠</span>
HTML Code:
<span>&#11040;</span>
HEX Code:
<span>&#x2B20;</span>

Add with CSS

.white-pentagon::before {
  content: '\\2B20';
}

Set it in JavaScript

document.querySelector('.white-pentagon').textContent = '⬠';
copied