Circled Number Twelve

Shortcodes

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

Unicode
U+246B
HTML Code
⑫
HEX Code
⑫
CSS Code
\246B
JS/JSON
\u246B
Unix/C/PHP/JAVA
0x246B
URL-encode
%E2%91%AB

Customize Circled Number Twelve

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑫</span>
HTML Code:
<span>&#9323;</span>
HEX Code:
<span>&#x246B;</span>

Add with CSS

.circled-number-twelve::before {
  content: '\\246B';
}

Set it in JavaScript

document.querySelector('.circled-number-twelve').textContent = '⑫';
copied