Greater-than Above Rightwards Arrow

Shortcodes

Copy useful codes for greater-than above rightwards arrow symbol ⥸ to use in websites, apps, blogs, and docs.

Unicode
U+2978
HTML Code
⥸
HEX Code
⥸
CSS Code
\2978
JS/JSON
\u2978
Unix/C/PHP/JAVA
0x2978
URL-encode
%E2%A5%B8

Customize Greater-than Above Rightwards Arrow

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

  

How to use Greater-than Above Rightwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥸</span>
HTML Code:
<span>&#10616;</span>
HEX Code:
<span>&#x2978;</span>

Add with CSS

.greater-than-above-rightwards-arrow::before {
  content: '\\2978';
}

Set it in JavaScript

document.querySelector('.greater-than-above-rightwards-arrow').textContent = '⥸';
copied