White Right-pointing Pentagon

Shortcodes

Copy useful codes for white right-pointing pentagon symbol ⭔ to use in websites, apps, blogs, and docs.

Unicode
U+2B54
HTML Code
⭔
HEX Code
⭔
CSS Code
\2B54
JS/JSON
\u2B54
Unix/C/PHP/JAVA
0x2B54
URL-encode
%E2%AD%94

Customize White Right-pointing Pentagon

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

  

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

Insert in HTML

1. Direct symbol:
<span>⭔</span>
HTML Code:
<span>&#11092;</span>
HEX Code:
<span>&#x2B54;</span>

Add with CSS

.white-right-pointing-pentagon::before {
  content: '\\2B54';
}

Set it in JavaScript

document.querySelector('.white-right-pointing-pentagon').textContent = '⭔';
copied