Parenthesized Number Thirteen

Shortcodes

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

Unicode
U+2480
HTML Code
⒀
HEX Code
⒀
CSS Code
\2480
JS/JSON
\u2480
Unix/C/PHP/JAVA
0x2480
URL-encode
%E2%92%80

Customize Parenthesized Number Thirteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒀</span>
HTML Code:
<span>&#9344;</span>
HEX Code:
<span>&#x2480;</span>

Add with CSS

.parenthesized-number-thirteen::before {
  content: '\\2480';
}

Set it in JavaScript

document.querySelector('.parenthesized-number-thirteen').textContent = '⒀';
copied