Superset Above Leftwards Arrow

Shortcodes

Copy useful codes for superset above leftwards arrow symbol ⥻ to use in websites, apps, blogs, and docs.

Unicode
U+297B
HTML Code
⥻
HEX Code
⥻
CSS Code
\297B
JS/JSON
\u297B
Unix/C/PHP/JAVA
0x297B
URL-encode
%E2%A5%BB

Customize Superset Above Leftwards Arrow

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

  

How to use Superset Above Leftwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥻</span>
HTML Code:
<span>&#10619;</span>
HEX Code:
<span>&#x297B;</span>

Add with CSS

.superset-above-leftwards-arrow::before {
  content: '\\297B';
}

Set it in JavaScript

document.querySelector('.superset-above-leftwards-arrow').textContent = '⥻';
copied