Parenthesized Number Fifteen

Shortcodes

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

Unicode
U+2482
HTML Code
⒂
HEX Code
⒂
CSS Code
\2482
JS/JSON
\u2482
Unix/C/PHP/JAVA
0x2482
URL-encode
%E2%92%82

Customize Parenthesized Number Fifteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒂</span>
HTML Code:
<span>&#9346;</span>
HEX Code:
<span>&#x2482;</span>

Add with CSS

.parenthesized-number-fifteen::before {
  content: '\\2482';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-fifteen').textContent = '⒂';
copied