Circled Number Twenty

Shortcodes

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

Unicode
U+2473
HTML Code
⑳
HEX Code
⑳
CSS Code
\2473
JS/JSON
\u2473
Unix/C/PHP/JAVA
0x2473
URL-encode
%E2%91%B3

Customize Circled Number Twenty

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑳</span>
HTML Code:
<span>&#9331;</span>
HEX Code:
<span>&#x2473;</span>

Add with CSS

.circled-number-twenty::before {
  content: '\\2473';
}

Set it in JavaScript

document.querySelector('.circled-number-twenty').textContent = '⑳';
copied