Parenthesized Digit Two

Shortcodes

Copy useful codes for parenthesized digit two symbol ⑵ to use in websites, apps, blogs, and docs.

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

Customize Parenthesized Digit Two

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

  

How to use Parenthesized Digit Two Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⑵</span>
HTML Code:
<span>&#9333;</span>
HEX Code:
<span>&#x2475;</span>

Add with CSS

.parenthesized-digit-two::before {
  content: '\\2475';
}

Set it in JavaScript

document.querySelector('.parenthesized-digit-two').textContent = '⑵';
copied