Parenthesized Number Eleven

Shortcodes

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

Unicode
U+247E
HTML Code
⑾
HEX Code
⑾
CSS Code
\247E
JS/JSON
\u247E
Unix/C/PHP/JAVA
0x247E
URL-encode
%E2%91%BE

Customize Parenthesized Number Eleven

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑾</span>
HTML Code:
<span>&#9342;</span>
HEX Code:
<span>&#x247E;</span>

Add with CSS

.parenthesized-number-eleven::before {
  content: '\\247E';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-eleven').textContent = '⑾';
copied