Parenthesized Digit Five

Shortcodes

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

Unicode
U+2478
HTML Code
⑸
HEX Code
⑸
CSS Code
\2478
JS/JSON
\u2478
Unix/C/PHP/JAVA
0x2478
URL-encode
%E2%91%B8

Customize Parenthesized Digit Five

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑸</span>
HTML Code:
<span>&#9336;</span>
HEX Code:
<span>&#x2478;</span>

Add with CSS

.parenthesized-digit-five::before {
  content: '\\2478';
}

Set it in JavaScript

document.querySelector('.parenthesized-digit-five').textContent = '⑸';
copied