Negative Circled Number Fifteen

Shortcodes

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

Unicode
U+24EF
HTML Code
⓯
HEX Code
⓯
CSS Code
\24EF
JS/JSON
\u24EF
Unix/C/PHP/JAVA
0x24EF
URL-encode
%E2%93%AF

Customize Negative Circled Number Fifteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓯</span>
HTML Code:
<span>&#9455;</span>
HEX Code:
<span>&#x24EF;</span>

Add with CSS

.negative-circled-number-fifteen::before {
  content: '\\24EF';
}

Set it in JavaScript

document.querySelector('.negative-circled-number-fifteen').textContent = '⓯';
copied