Digit One Full Stop

Shortcodes

Copy useful codes for digit one full stop symbol ⒈ to use in websites, apps, blogs, and docs.

Unicode
U+2488
HTML Code
⒈
HEX Code
⒈
CSS Code
\2488
JS/JSON
\u2488
Unix/C/PHP/JAVA
0x2488
URL-encode
%E2%92%88

Customize Digit One Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒈</span>
HTML Code:
<span>&#9352;</span>
HEX Code:
<span>&#x2488;</span>

Add with CSS

.digit-one-full-stop::before {
  content: '\\2488';
}

Set it in JavaScript

document.querySelector('.digit-one-full-stop').textContent = '⒈';
copied