Parenthesized Number Seventeen

Shortcodes

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

Unicode
U+2484
HTML Code
⒄
HEX Code
⒄
CSS Code
\2484
JS/JSON
\u2484
Unix/C/PHP/JAVA
0x2484
URL-encode
%E2%92%84

Customize Parenthesized Number Seventeen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒄</span>
HTML Code:
<span>&#9348;</span>
HEX Code:
<span>&#x2484;</span>

Add with CSS

.parenthesized-number-seventeen::before {
  content: '\\2484';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-seventeen').textContent = '⒄';
copied