Double Circled Digit Six

Shortcodes

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

Unicode
U+24FA
HTML Code
⓺
HEX Code
⓺
CSS Code
\24FA
JS/JSON
\u24FA
Unix/C/PHP/JAVA
0x24FA
URL-encode
%E2%93%BA

Customize Double Circled Digit Six

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓺</span>
HTML Code:
<span>&#9466;</span>
HEX Code:
<span>&#x24FA;</span>

Add with CSS

.double-circled-digit-six::before {
  content: '\\24FA';
}

Set it in JavaScript

document.querySelector('.double-circled-digit-six').textContent = '⓺';
copied