Negative Circled Number Fourteen

Shortcodes

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

Unicode
U+24EE
HTML Code
⓮
HEX Code
⓮
CSS Code
\24EE
JS/JSON
\u24EE
Unix/C/PHP/JAVA
0x24EE
URL-encode
%E2%93%AE

Customize Negative Circled Number Fourteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓮</span>
HTML Code:
<span>&#9454;</span>
HEX Code:
<span>&#x24EE;</span>

Add with CSS

.negative-circled-number-fourteen::before {
  content: '\\24EE';
}

Set it in JavaScript

document.querySelector('.negative-circled-number-fourteen').textContent = '⓮';
copied