Circled Digit Two

Shortcodes

Copy useful codes for circled digit two symbol ② to use in websites, apps, blogs, and docs.

Unicode
U+2461
HTML Code
②
HEX Code
②
CSS Code
\2461
JS/JSON
\u2461
Unix/C/PHP/JAVA
0x2461
URL-encode
%E2%91%A1

Customize Circled Digit Two

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

  

How to use Circled Digit Two Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>②</span>
HTML Code:
<span>&#9313;</span>
HEX Code:
<span>&#x2461;</span>

Add with CSS

.circled-digit-two::before {
  content: '\\2461';
}

Set it in JavaScript

document.querySelector('.circled-digit-two').textContent = '②';
copied