Empty Set With Overbar

Shortcodes

Copy useful codes for empty set with overbar symbol ⦱ to use in websites, apps, blogs, and docs.

Unicode
U+29B1
HTML Code
⦱
HEX Code
⦱
CSS Code
\29B1
JS/JSON
\u29B1
Unix/C/PHP/JAVA
0x29B1
URL-encode
%E2%A6%B1

Customize Empty Set With Overbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦱</span>
HTML Code:
<span>&#10673;</span>
HEX Code:
<span>&#x29B1;</span>

Add with CSS

.empty-set-with-overbar::before {
  content: '\\29B1';
}

Set it in JavaScript

document.querySelector('.empty-set-with-overbar').textContent = '⦱';
copied