Parenthesized Digit Nine

Shortcodes

Copy useful codes for parenthesized digit nine symbol ⑼ to use in websites, apps, blogs, and docs.

Unicode
U+247C
HTML Code
⑼
HEX Code
⑼
CSS Code
\247C
JS/JSON
\u247C
Unix/C/PHP/JAVA
0x247C
URL-encode
%E2%91%BC

Customize Parenthesized Digit Nine

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

  

How to use Parenthesized Digit Nine Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⑼</span>
HTML Code:
<span>&#9340;</span>
HEX Code:
<span>&#x247C;</span>

Add with CSS

.parenthesized-digit-nine::before {
  content: '\\247C';
}

Set it in JavaScript

document.querySelector('.parenthesized-digit-nine').textContent = '⑼';
copied