Digit Four Full Stop

Shortcodes

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

Unicode
U+248B
HTML Code
⒋
HEX Code
⒋
CSS Code
\248B
JS/JSON
\u248B
Unix/C/PHP/JAVA
0x248B
URL-encode
%E2%92%8B

Customize Digit Four Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒋</span>
HTML Code:
<span>&#9355;</span>
HEX Code:
<span>&#x248B;</span>

Add with CSS

.digit-four-full-stop::before {
  content: '\\248B';
}

Set it in JavaScript

document.querySelector('.digit-four-full-stop').textContent = '⒋';
copied