Digit Two Full Stop

Shortcodes

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

Unicode
U+2489
HTML Code
⒉
HEX Code
⒉
CSS Code
\2489
JS/JSON
\u2489
Unix/C/PHP/JAVA
0x2489
URL-encode
%E2%92%89

Customize Digit Two Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒉</span>
HTML Code:
<span>&#9353;</span>
HEX Code:
<span>&#x2489;</span>

Add with CSS

.digit-two-full-stop::before {
  content: '\\2489';
}

Set it in JavaScript

document.querySelector('.digit-two-full-stop').textContent = '⒉';
copied