White Right-pointing Pointer

Shortcodes

Copy and paste codes for White Right-pointing Pointer symbol ▻ to use in your websites, apps, blogs, and more.

Unicode
U+25BB
HTML Code
▻
HEX Code
▻
CSS Code
\25BB
JS/JSON
\u25BB
Unix/C/PHP/JAVA
0x25BB
URL-encode
%E2%96%BB
copied

Customize White Right-pointing Pointer Symbol

Customize ▻ symbol as you like and download White Right-pointing Pointer 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 White Right-pointing Pointer symbol in HTML, CSS, and JS?

Insert ▻ White Right-pointing Pointer using HTML

1. Copy-paste White Right-pointing Pointer directly:
<span>▻</span>
2. HTML Decimal Code:
<span>&#9659;</span>
3. Hexadecimal Code:
<span>&#x25BB;</span>
Preview:

Add White Right-pointing Pointer symbol with CSS

.white-right-pointing-pointer::before {
    content: '\\25BB';
}
Preview: White Right-pointing Pointer

White Right-pointing Pointer JavaScript Code

1. Direct Symbol:
document.querySelector('.white-right-pointing-pointer').textContent = '▻';
2. Unicode Escape for ▻:
document.querySelector('.white-right-pointing-pointer').textContent = '\u25BB';
Preview: