Negative Circled Number Nineteen

Shortcodes

Copy useful codes for negative circled number nineteen symbol ⓳ to use in websites, apps, blogs, and docs.

Unicode
U+24F3
HTML Code
⓳
HEX Code
⓳
CSS Code
\24F3
JS/JSON
\u24F3
Unix/C/PHP/JAVA
0x24F3
URL-encode
%E2%93%B3

Customize Negative Circled Number Nineteen

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

  

How to use Negative Circled Number Nineteen Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⓳</span>
HTML Code:
<span>&#9459;</span>
HEX Code:
<span>&#x24F3;</span>

Add with CSS

.negative-circled-number-nineteen::before {
  content: '\\24F3';
}

Set it in JavaScript

document.querySelector('.negative-circled-number-nineteen').textContent = '⓳';
copied