Double Circled Digit Three

Shortcodes

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

Unicode
U+24F7
HTML Code
⓷
HEX Code
⓷
CSS Code
\24F7
JS/JSON
\u24F7
Unix/C/PHP/JAVA
0x24F7
URL-encode
%E2%93%B7

Customize Double Circled Digit Three

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓷</span>
HTML Code:
<span>&#9463;</span>
HEX Code:
<span>&#x24F7;</span>

Add with CSS

.double-circled-digit-three::before {
  content: '\\24F7';
}

Set it in JavaScript

document.querySelector('.double-circled-digit-three').textContent = '⓷';
copied