Empty Set With Small Circle Above

Shortcodes

Copy useful codes for empty set with small circle above symbol ⦲ to use in websites, apps, blogs, and docs.

Unicode
U+29B2
HTML Code
⦲
HEX Code
⦲
CSS Code
\29B2
JS/JSON
\u29B2
Unix/C/PHP/JAVA
0x29B2
URL-encode
%E2%A6%B2

Customize Empty Set With Small Circle Above

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

  

How to use Empty Set With Small Circle Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦲</span>
HTML Code:
<span>&#10674;</span>
HEX Code:
<span>&#x29B2;</span>

Add with CSS

.empty-set-with-small-circle-above::before {
  content: '\\29B2';
}

Set it in JavaScript

document.querySelector('.empty-set-with-small-circle-above').textContent = '⦲';
copied