White Right-pointing Pointer

Shortcodes

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

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

Customize White Right-pointing Pointer

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

  

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

Insert in HTML

1. Direct symbol:
<span>▻</span>
HTML Code:
<span>&#9659;</span>
HEX Code:
<span>&#x25BB;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.white-right-pointing-pointer').textContent = '▻';
copied