Parenthesized Number Fourteen

Shortcodes

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

Unicode
U+2481
HTML Code
⒁
HEX Code
⒁
CSS Code
\2481
JS/JSON
\u2481
Unix/C/PHP/JAVA
0x2481
URL-encode
%E2%92%81

Customize Parenthesized Number Fourteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒁</span>
HTML Code:
<span>&#9345;</span>
HEX Code:
<span>&#x2481;</span>

Add with CSS

.parenthesized-number-fourteen::before {
  content: '\\2481';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-fourteen').textContent = '⒁';
copied