Circled Number Seventeen

Shortcodes

Copy useful codes for circled number seventeen symbol ⑰ to use in websites, apps, blogs, and docs.

Unicode
U+2470
HTML Code
⑰
HEX Code
⑰
CSS Code
\2470
JS/JSON
\u2470
Unix/C/PHP/JAVA
0x2470
URL-encode
%E2%91%B0

Customize Circled Number Seventeen

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

  

How to use Circled Number Seventeen Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⑰</span>
HTML Code:
<span>&#9328;</span>
HEX Code:
<span>&#x2470;</span>

Add with CSS

.circled-number-seventeen::before {
  content: '\\2470';
}

Set it in JavaScript

document.querySelector('.circled-number-seventeen').textContent = '⑰';
copied