Negative Circled Digit Zero

Shortcodes

Copy useful codes for negative circled digit zero symbol ⓿ to use in websites, apps, blogs, and docs.

Unicode
U+24FF
HTML Code
⓿
HEX Code
⓿
CSS Code
\24FF
JS/JSON
\u24FF
Unix/C/PHP/JAVA
0x24FF
URL-encode
%E2%93%BF

Customize Negative Circled Digit Zero

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

  

How to use Negative Circled Digit Zero Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⓿</span>
HTML Code:
<span>&#9471;</span>
HEX Code:
<span>&#x24FF;</span>

Add with CSS

.negative-circled-digit-zero::before {
  content: '\\24FF';
}

Set it in JavaScript

document.querySelector('.negative-circled-digit-zero').textContent = '⓿';
copied