Empty Set With Right Arrow Above

Shortcodes

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

Unicode
U+29B3
HTML Code
⦳
HEX Code
⦳
CSS Code
\29B3
JS/JSON
\u29B3
Unix/C/PHP/JAVA
0x29B3
URL-encode
%E2%A6%B3

Customize Empty Set With Right Arrow Above

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦳</span>
HTML Code:
<span>&#10675;</span>
HEX Code:
<span>&#x29B3;</span>

Add with CSS

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

Set it in JavaScript

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