Double Circled Digit Five

Shortcodes

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

Unicode
U+24F9
HTML Code
⓹
HEX Code
⓹
CSS Code
\24F9
JS/JSON
\u24F9
Unix/C/PHP/JAVA
0x24F9
URL-encode
%E2%93%B9

Customize Double Circled Digit Five

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓹</span>
HTML Code:
<span>&#9465;</span>
HEX Code:
<span>&#x24F9;</span>

Add with CSS

.double-circled-digit-five::before {
  content: '\\24F9';
}

Set it in JavaScript

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