Circled Number Ten

Shortcodes

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

Unicode
U+2469
HTML Code
⑩
HEX Code
⑩
CSS Code
\2469
JS/JSON
\u2469
Unix/C/PHP/JAVA
0x2469
URL-encode
%E2%91%A9

Customize Circled Number Ten

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑩</span>
HTML Code:
<span>&#9321;</span>
HEX Code:
<span>&#x2469;</span>

Add with CSS

.circled-number-ten::before {
  content: '\\2469';
}

Set it in JavaScript

document.querySelector('.circled-number-ten').textContent = '⑩';
copied