Digit Five Full Stop

Shortcodes

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

Unicode
U+248C
HTML Code
⒌
HEX Code
⒌
CSS Code
\248C
JS/JSON
\u248C
Unix/C/PHP/JAVA
0x248C
URL-encode
%E2%92%8C

Customize Digit Five Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒌</span>
HTML Code:
<span>&#9356;</span>
HEX Code:
<span>&#x248C;</span>

Add with CSS

.digit-five-full-stop::before {
  content: '\\248C';
}

Set it in JavaScript

document.querySelector('.digit-five-full-stop').textContent = '⒌';
copied