Parenthesized Number Twelve

Shortcodes

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

Unicode
U+247F
HTML Code
⑿
HEX Code
⑿
CSS Code
\247F
JS/JSON
\u247F
Unix/C/PHP/JAVA
0x247F
URL-encode
%E2%91%BF

Customize Parenthesized Number Twelve

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑿</span>
HTML Code:
<span>&#9343;</span>
HEX Code:
<span>&#x247F;</span>

Add with CSS

.parenthesized-number-twelve::before {
  content: '\\247F';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-twelve').textContent = '⑿';
copied