Leftwards Arrow Through Subset

Shortcodes

Copy useful codes for leftwards arrow through subset symbol ⥺ to use in websites, apps, blogs, and docs.

Unicode
U+297A
HTML Code
⥺
HEX Code
⥺
CSS Code
\297A
JS/JSON
\u297A
Unix/C/PHP/JAVA
0x297A
URL-encode
%E2%A5%BA

Customize Leftwards Arrow Through Subset

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

  

How to use Leftwards Arrow Through Subset Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥺</span>
HTML Code:
<span>&#10618;</span>
HEX Code:
<span>&#x297A;</span>

Add with CSS

.leftwards-arrow-through-subset::before {
  content: '\\297A';
}

Set it in JavaScript

document.querySelector('.leftwards-arrow-through-subset').textContent = '⥺';
copied