Empty Set With Left Arrow Above

Shortcodes

Copy useful codes for empty set with left arrow above symbol ⦴ to use in websites, apps, blogs, and docs.

Unicode
U+29B4
HTML Code
⦴
HEX Code
⦴
CSS Code
\29B4
JS/JSON
\u29B4
Unix/C/PHP/JAVA
0x29B4
URL-encode
%E2%A6%B4

Customize Empty Set With Left Arrow Above

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

  

How to use Empty Set With Left Arrow Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦴</span>
HTML Code:
<span>&#10676;</span>
HEX Code:
<span>&#x29B4;</span>

Add with CSS

.empty-set-with-left-arrow-above::before {
  content: '\\29B4';
}

Set it in JavaScript

document.querySelector('.empty-set-with-left-arrow-above').textContent = '⦴';
copied