Circled Digit Five

Shortcodes

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

Unicode
U+2464
HTML Code
⑤
HEX Code
⑤
CSS Code
\2464
JS/JSON
\u2464
Unix/C/PHP/JAVA
0x2464
URL-encode
%E2%91%A4

Customize Circled Digit Five

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑤</span>
HTML Code:
<span>&#9316;</span>
HEX Code:
<span>&#x2464;</span>

Add with CSS

.circled-digit-five::before {
  content: '\\2464';
}

Set it in JavaScript

document.querySelector('.circled-digit-five').textContent = '⑤';
copied