Reversed Empty Set

Shortcodes

Copy useful codes for reversed empty set symbol ⦰ to use in websites, apps, blogs, and docs.

Unicode
U+29B0
HTML Code
⦰
HEX Code
⦰
CSS Code
\29B0
JS/JSON
\u29B0
Unix/C/PHP/JAVA
0x29B0
URL-encode
%E2%A6%B0

Customize Reversed Empty Set

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

  

How to use Reversed Empty Set Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦰</span>
HTML Code:
<span>&#10672;</span>
HEX Code:
<span>&#x29B0;</span>

Add with CSS

.reversed-empty-set::before {
  content: '\\29B0';
}

Set it in JavaScript

document.querySelector('.reversed-empty-set').textContent = '⦰';
copied