Parenthesized Digit One

Shortcodes

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

Unicode
U+2474
HTML Code
⑴
HEX Code
⑴
CSS Code
\2474
JS/JSON
\u2474
Unix/C/PHP/JAVA
0x2474
URL-encode
%E2%91%B4

Customize Parenthesized Digit One

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

  

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

Insert in HTML

1. Direct symbol:
<span>⑴</span>
HTML Code:
<span>&#9332;</span>
HEX Code:
<span>&#x2474;</span>

Add with CSS

.parenthesized-digit-one::before {
  content: '\\2474';
}

Set it in JavaScript

document.querySelector('.parenthesized-digit-one').textContent = '⑴';
copied