Digit Six Full Stop

Shortcodes

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

Unicode
U+248D
HTML Code
⒍
HEX Code
⒍
CSS Code
\248D
JS/JSON
\u248D
Unix/C/PHP/JAVA
0x248D
URL-encode
%E2%92%8D

Customize Digit Six Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒍</span>
HTML Code:
<span>&#9357;</span>
HEX Code:
<span>&#x248D;</span>

Add with CSS

.digit-six-full-stop::before {
  content: '\\248D';
}

Set it in JavaScript

document.querySelector('.digit-six-full-stop').textContent = '⒍';
copied