Subset Above Rightwards Arrow

Shortcodes

Copy useful codes for subset above rightwards arrow symbol ⥹ to use in websites, apps, blogs, and docs.

Unicode
U+2979
HTML Code
⥹
HEX Code
⥹
CSS Code
\2979
JS/JSON
\u2979
Unix/C/PHP/JAVA
0x2979
URL-encode
%E2%A5%B9

Customize Subset Above Rightwards Arrow

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

  

How to use Subset Above Rightwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥹</span>
HTML Code:
<span>&#10617;</span>
HEX Code:
<span>&#x2979;</span>

Add with CSS

.subset-above-rightwards-arrow::before {
  content: '\\2979';
}

Set it in JavaScript

document.querySelector('.subset-above-rightwards-arrow').textContent = '⥹';
copied