Digit Seven Full Stop

Shortcodes

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

Unicode
U+248E
HTML Code
⒎
HEX Code
⒎
CSS Code
\248E
JS/JSON
\u248E
Unix/C/PHP/JAVA
0x248E
URL-encode
%E2%92%8E

Customize Digit Seven Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒎</span>
HTML Code:
<span>&#9358;</span>
HEX Code:
<span>&#x248E;</span>

Add with CSS

.digit-seven-full-stop::before {
  content: '\\248E';
}

Set it in JavaScript

document.querySelector('.digit-seven-full-stop').textContent = '⒎';
copied