Parenthesized Number Fifteen

Shortcodes

Copy and paste codes for Parenthesized Number Fifteen symbol ⒂ to use in your websites, apps, blogs, and more.

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

Customize Parenthesized Number Fifteen Symbol

Customize ⒂ symbol as you like and download Parenthesized Number Fifteen as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Parenthesized Number Fifteen symbol in HTML, CSS, and JS?

Insert ⒂ Parenthesized Number Fifteen using HTML

1. Copy-paste Parenthesized Number Fifteen directly:
<span>⒂</span>
2. HTML Decimal Code:
<span>&#9346;</span>
3. Hexadecimal Code:
<span>&#x2482;</span>
Preview:

Add Parenthesized Number Fifteen symbol with CSS

.parenthesized-number-fifteen::before {
    content: '\\2482';
}
Preview: Parenthesized Number Fifteen

Parenthesized Number Fifteen JavaScript Code

1. Direct Symbol:
document.querySelector('.parenthesized-number-fifteen').textContent = '⒂';
2. Unicode Escape for ⒂:
document.querySelector('.parenthesized-number-fifteen').textContent = '\u2482';
Preview: