Black Right-pointing Pointer

Shortcodes

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

Unicode
U+25BA
Alt Code
16
HTML Code
►
HEX Code
►
CSS Code
\25BA
JS/JSON
\u25BA
Unix/C/PHP/JAVA
0x25BA
URL-encode
%E2%96%BA

Customize Black Right-pointing Pointer

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

  

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

Insert in HTML

1. Direct symbol:
<span>►</span>
HTML Code:
<span>&#9658;</span>
HEX Code:
<span>&#x25BA;</span>

Add with CSS

.black-right-pointing-pointer::before {
  content: '\\25BA';
}

Set it in JavaScript

document.querySelector('.black-right-pointing-pointer').textContent = '►';
copied