Parenthesized Number Sixteen

Shortcodes

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

Unicode
U+2483
HTML Code
⒃
HEX Code
⒃
CSS Code
\2483
JS/JSON
\u2483
Unix/C/PHP/JAVA
0x2483
URL-encode
%E2%92%83

Customize Parenthesized Number Sixteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒃</span>
HTML Code:
<span>&#9347;</span>
HEX Code:
<span>&#x2483;</span>

Add with CSS

.parenthesized-number-sixteen::before {
  content: '\\2483';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-sixteen').textContent = '⒃';
copied