Parenthesized Digit Eight

Shortcodes

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

Unicode
U+247B
HTML Code
⑻
HEX Code
⑻
CSS Code
\247B
JS/JSON
\u247B
Unix/C/PHP/JAVA
0x247B
URL-encode
%E2%91%BB

Customize Parenthesized Digit Eight

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑻</span>
HTML Code:
<span>&#9339;</span>
HEX Code:
<span>&#x247B;</span>

Add with CSS

.parenthesized-digit-eight::before {
  content: '\\247B';
}

Set it in JavaScript

document.querySelector('.parenthesized-digit-eight').textContent = '⑻';
copied