Parenthesized Digit Four

Shortcodes

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

Unicode
U+2477
HTML Code
⑷
HEX Code
⑷
CSS Code
\2477
JS/JSON
\u2477
Unix/C/PHP/JAVA
0x2477
URL-encode
%E2%91%B7

Customize Parenthesized Digit Four

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑷</span>
HTML Code:
<span>&#9335;</span>
HEX Code:
<span>&#x2477;</span>

Add with CSS

.parenthesized-digit-four::before {
  content: '\\2477';
}

Set it in JavaScript

document.querySelector('.parenthesized-digit-four').textContent = '⑷';
copied