Parenthesized Digit Three

Shortcodes

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

Unicode
U+2476
HTML Code
⑶
HEX Code
⑶
CSS Code
\2476
JS/JSON
\u2476
Unix/C/PHP/JAVA
0x2476
URL-encode
%E2%91%B6

Customize Parenthesized Digit Three

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑶</span>
HTML Code:
<span>&#9334;</span>
HEX Code:
<span>&#x2476;</span>

Add with CSS

.parenthesized-digit-three::before {
  content: '\\2476';
}

Set it in JavaScript

document.querySelector('.parenthesized-digit-three').textContent = '⑶';
copied