Negative Circled Number Seventeen

Shortcodes

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

Unicode
U+24F1
HTML Code
⓱
HEX Code
⓱
CSS Code
\24F1
JS/JSON
\u24F1
Unix/C/PHP/JAVA
0x24F1
URL-encode
%E2%93%B1

Customize Negative Circled Number Seventeen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓱</span>
HTML Code:
<span>&#9457;</span>
HEX Code:
<span>&#x24F1;</span>

Add with CSS

.negative-circled-number-seventeen::before {
  content: '\\24F1';
}

Set it in JavaScript

document.querySelector('.negative-circled-number-seventeen').textContent = '⓱';
copied