Negative Circled Number Sixteen

Shortcodes

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

Unicode
U+24F0
HTML Code
⓰
HEX Code
⓰
CSS Code
\24F0
JS/JSON
\u24F0
Unix/C/PHP/JAVA
0x24F0
URL-encode
%E2%93%B0

Customize Negative Circled Number Sixteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓰</span>
HTML Code:
<span>&#9456;</span>
HEX Code:
<span>&#x24F0;</span>

Add with CSS

.negative-circled-number-sixteen::before {
  content: '\\24F0';
}

Set it in JavaScript

document.querySelector('.negative-circled-number-sixteen').textContent = '⓰';
copied