Circled Digit Seven

Shortcodes

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

Unicode
U+2466
HTML Code
⑦
HEX Code
⑦
CSS Code
\2466
JS/JSON
\u2466
Unix/C/PHP/JAVA
0x2466
URL-encode
%E2%91%A6

Customize Circled Digit Seven

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑦</span>
HTML Code:
<span>&#9318;</span>
HEX Code:
<span>&#x2466;</span>

Add with CSS

.circled-digit-seven::before {
  content: '\\2466';
}

Set it in JavaScript

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