Heavy Black Curved Upwards And Rightwards Arrow

Shortcodes

Copy useful codes for heavy black curved upwards and rightwards arrow symbol ➦ to use in websites, apps, blogs, and docs.

Unicode
U+27A6
HTML Code
➦
HEX Code
➦
CSS Code
\27A6
JS/JSON
\u27A6
Unix/C/PHP/JAVA
0x27A6
URL-encode
%E2%9E%A6

Customize Heavy Black Curved Upwards And Rightwards Arrow

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

  

How to use Heavy Black Curved Upwards And Rightwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>➦</span>
HTML Code:
<span>&#10150;</span>
HEX Code:
<span>&#x27A6;</span>

Add with CSS

.heavy-black-curved-upwards-and-rightwards-arrow::before {
  content: '\\27A6';
}

Set it in JavaScript

document.querySelector('.heavy-black-curved-upwards-and-rightwards-arrow').textContent = '➦';
copied