Parenthesized Number Nineteen

Shortcodes

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

Unicode
U+2486
HTML Code
⒆
HEX Code
⒆
CSS Code
\2486
JS/JSON
\u2486
Unix/C/PHP/JAVA
0x2486
URL-encode
%E2%92%86

Customize Parenthesized Number Nineteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒆</span>
HTML Code:
<span>&#9350;</span>
HEX Code:
<span>&#x2486;</span>

Add with CSS

.parenthesized-number-nineteen::before {
  content: '\\2486';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-nineteen').textContent = '⒆';
copied