Black Right-pointing Pentagon

Shortcodes

Copy and paste codes for Black Right-pointing Pentagon symbol ⭓ to use in your websites, apps, blogs, and more.

Unicode
U+2B53
HTML Code
⭓
HEX Code
⭓
CSS Code
\2B53
JS/JSON
\u2B53
Unix/C/PHP/JAVA
0x2B53
URL-encode
%E2%AD%93
copied

Customize Black Right-pointing Pentagon Symbol

Customize ⭓ symbol as you like and download Black Right-pointing Pentagon as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Black Right-pointing Pentagon symbol in HTML, CSS, and JS?

Insert ⭓ Black Right-pointing Pentagon using HTML

1. Copy-paste Black Right-pointing Pentagon directly:
<span>⭓</span>
2. HTML Decimal Code:
<span>&#11091;</span>
3. Hexadecimal Code:
<span>&#x2B53;</span>
Preview:

Add Black Right-pointing Pentagon symbol with CSS

.black-right-pointing-pentagon::before {
    content: '\\2B53';
}
Preview: Black Right-pointing Pentagon

Black Right-pointing Pentagon JavaScript Code

1. Direct Symbol:
document.querySelector('.black-right-pointing-pentagon').textContent = '⭓';
2. Unicode Escape for ⭓:
document.querySelector('.black-right-pointing-pentagon').textContent = '\u2B53';
Preview: