Negative Circled Number Eighteen

Shortcodes

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

Unicode
U+24F2
HTML Code
⓲
HEX Code
⓲
CSS Code
\24F2
JS/JSON
\u24F2
Unix/C/PHP/JAVA
0x24F2
URL-encode
%E2%93%B2

Customize Negative Circled Number Eighteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓲</span>
HTML Code:
<span>&#9458;</span>
HEX Code:
<span>&#x24F2;</span>

Add with CSS

.negative-circled-number-eighteen::before {
  content: '\\24F2';
}

Set it in JavaScript

document.querySelector('.negative-circled-number-eighteen').textContent = '⓲';
copied