Parenthesized Number Eighteen

Shortcodes

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

Unicode
U+2485
HTML Code
⒅
HEX Code
⒅
CSS Code
\2485
JS/JSON
\u2485
Unix/C/PHP/JAVA
0x2485
URL-encode
%E2%92%85

Customize Parenthesized Number Eighteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒅</span>
HTML Code:
<span>&#9349;</span>
HEX Code:
<span>&#x2485;</span>

Add with CSS

.parenthesized-number-eighteen::before {
  content: '\\2485';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-eighteen').textContent = '⒅';
copied