Double Circled Digit Seven

Shortcodes

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

Unicode
U+24FB
HTML Code
⓻
HEX Code
⓻
CSS Code
\24FB
JS/JSON
\u24FB
Unix/C/PHP/JAVA
0x24FB
URL-encode
%E2%93%BB

Customize Double Circled Digit Seven

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓻</span>
HTML Code:
<span>&#9467;</span>
HEX Code:
<span>&#x24FB;</span>

Add with CSS

.double-circled-digit-seven::before {
  content: '\\24FB';
}

Set it in JavaScript

document.querySelector('.double-circled-digit-seven').textContent = '⓻';
copied