Three-d Top-lighted Rightwards Arrowhead

Shortcodes

Copy useful codes for three-d top-lighted rightwards arrowhead symbol ➢ to use in websites, apps, blogs, and docs.

Unicode
U+27A2
HTML Code
➢
HEX Code
➢
CSS Code
\27A2
JS/JSON
\u27A2
Unix/C/PHP/JAVA
0x27A2
URL-encode
%E2%9E%A2

Customize Three-d Top-lighted Rightwards Arrowhead

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

  

How to use Three-d Top-lighted Rightwards Arrowhead Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>➢</span>
HTML Code:
<span>&#10146;</span>
HEX Code:
<span>&#x27A2;</span>

Add with CSS

.three-d-top-lighted-rightwards-arrowhead::before {
  content: '\\27A2';
}

Set it in JavaScript

document.querySelector('.three-d-top-lighted-rightwards-arrowhead').textContent = '➢';
copied