Parenthesized Number Twenty

Shortcodes

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

Unicode
U+2487
HTML Code
⒇
HEX Code
⒇
CSS Code
\2487
JS/JSON
\u2487
Unix/C/PHP/JAVA
0x2487
URL-encode
%E2%92%87

Customize Parenthesized Number Twenty

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒇</span>
HTML Code:
<span>&#9351;</span>
HEX Code:
<span>&#x2487;</span>

Add with CSS

.parenthesized-number-twenty::before {
  content: '\\2487';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-twenty').textContent = '⒇';
copied