Double Circled Digit Nine

Shortcodes

Copy useful codes for double circled digit nine symbol ⓽ to use in websites, apps, blogs, and docs.

Unicode
U+24FD
HTML Code
⓽
HEX Code
⓽
CSS Code
\24FD
JS/JSON
\u24FD
Unix/C/PHP/JAVA
0x24FD
URL-encode
%E2%93%BD

Customize Double Circled Digit Nine

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

  

How to use Double Circled Digit Nine Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⓽</span>
HTML Code:
<span>&#9469;</span>
HEX Code:
<span>&#x24FD;</span>

Add with CSS

.double-circled-digit-nine::before {
  content: '\\24FD';
}

Set it in JavaScript

document.querySelector('.double-circled-digit-nine').textContent = '⓽';
copied