Circled Digit Three

Shortcodes

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

Unicode
U+2462
HTML Code
③
HEX Code
③
CSS Code
\2462
JS/JSON
\u2462
Unix/C/PHP/JAVA
0x2462
URL-encode
%E2%91%A2

Customize Circled Digit Three

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

  

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

Insert in HTML

1. Direct symbol:
<span>③</span>
HTML Code:
<span>&#9314;</span>
HEX Code:
<span>&#x2462;</span>

Add with CSS

.circled-digit-three::before {
  content: '\\2462';
}

Set it in JavaScript

document.querySelector('.circled-digit-three').textContent = '③';
copied