Parenthesized Digit Two

Shortcodes

Copy and paste codes for Parenthesized Digit Two symbol ⑵ to use in your websites, apps, blogs, and more.

Unicode
U+2475
HTML Code
⑵
HEX Code
⑵
CSS Code
\2475
JS/JSON
\u2475
Unix/C/PHP/JAVA
0x2475
URL-encode
%E2%91%B5
copied

Customize Parenthesized Digit Two Symbol

Customize ⑵ symbol as you like and download Parenthesized Digit Two 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 Digit Two symbol in HTML, CSS, and JS?

Insert ⑵ Parenthesized Digit Two using HTML

1. Copy-paste Parenthesized Digit Two directly:
<span>⑵</span>
2. HTML Decimal Code:
<span>&#9333;</span>
3. Hexadecimal Code:
<span>&#x2475;</span>
Preview:

Add Parenthesized Digit Two symbol with CSS

.parenthesized-digit-two::before {
    content: '\\2475';
}
Preview: Parenthesized Digit Two

Parenthesized Digit Two JavaScript Code

1. Direct Symbol:
document.querySelector('.parenthesized-digit-two').textContent = '⑵';
2. Unicode Escape for ⑵:
document.querySelector('.parenthesized-digit-two').textContent = '\u2475';
Preview: