Negative Circled Number Twenty

Shortcodes

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

Unicode
U+24F4
HTML Code
⓴
HEX Code
⓴
CSS Code
\24F4
JS/JSON
\u24F4
Unix/C/PHP/JAVA
0x24F4
URL-encode
%E2%93%B4

Customize Negative Circled Number Twenty

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓴</span>
HTML Code:
<span>&#9460;</span>
HEX Code:
<span>&#x24F4;</span>

Add with CSS

.negative-circled-number-twenty::before {
  content: '\\24F4';
}

Set it in JavaScript

document.querySelector('.negative-circled-number-twenty').textContent = '⓴';
copied