Negative Circled Number Twelve

Shortcodes

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

Unicode
U+24EC
HTML Code
⓬
HEX Code
⓬
CSS Code
\24EC
JS/JSON
\u24EC
Unix/C/PHP/JAVA
0x24EC
URL-encode
%E2%93%AC

Customize Negative Circled Number Twelve

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓬</span>
HTML Code:
<span>&#9452;</span>
HEX Code:
<span>&#x24EC;</span>

Add with CSS

.negative-circled-number-twelve::before {
  content: '\\24EC';
}

Set it in JavaScript

document.querySelector('.negative-circled-number-twelve').textContent = '⓬';
copied