Circled Number Thirteen

Shortcodes

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

Unicode
U+246C
HTML Code
⑬
HEX Code
⑬
CSS Code
\246C
JS/JSON
\u246C
Unix/C/PHP/JAVA
0x246C
URL-encode
%E2%91%AC

Customize Circled Number Thirteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑬</span>
HTML Code:
<span>&#9324;</span>
HEX Code:
<span>&#x246C;</span>

Add with CSS

.circled-number-thirteen::before {
  content: '\\246C';
}

Set it in JavaScript

document.querySelector('.circled-number-thirteen').textContent = '⑬';
copied