Parenthesized Number Ten

Shortcodes

Copy useful codes for parenthesized number ten symbol ⑽ to use in websites, apps, blogs, and docs.

Unicode
U+247D
HTML Code
⑽
HEX Code
⑽
CSS Code
\247D
JS/JSON
\u247D
Unix/C/PHP/JAVA
0x247D
URL-encode
%E2%91%BD

Customize Parenthesized Number Ten

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑽</span>
HTML Code:
<span>&#9341;</span>
HEX Code:
<span>&#x247D;</span>

Add with CSS

.parenthesized-number-ten::before {
  content: '\\247D';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-ten').textContent = '⑽';
copied