Parenthesized Digit Seven

Shortcodes

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

Unicode
U+247A
HTML Code
⑺
HEX Code
⑺
CSS Code
\247A
JS/JSON
\u247A
Unix/C/PHP/JAVA
0x247A
URL-encode
%E2%91%BA

Customize Parenthesized Digit Seven

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑺</span>
HTML Code:
<span>&#9338;</span>
HEX Code:
<span>&#x247A;</span>

Add with CSS

.parenthesized-digit-seven::before {
  content: '\\247A';
}

Set it in JavaScript

document.querySelector('.parenthesized-digit-seven').textContent = '⑺';
copied