Number Ten Full Stop

Shortcodes

Copy useful codes for number ten full stop symbol ⒑ to use in websites, apps, blogs, and docs.

Unicode
U+2491
HTML Code
⒑
HEX Code
⒑
CSS Code
\2491
JS/JSON
\u2491
Unix/C/PHP/JAVA
0x2491
URL-encode
%E2%92%91

Customize Number Ten Full Stop

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

  

How to use Number Ten Full Stop Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⒑</span>
HTML Code:
<span>&#9361;</span>
HEX Code:
<span>&#x2491;</span>

Add with CSS

.number-ten-full-stop::before {
  content: '\\2491';
}

Set it in JavaScript

document.querySelector('.number-ten-full-stop').textContent = '⒑';
copied