Coptic Full Stop

Shortcodes

Copy useful codes for coptic full stop symbol ⳾ to use in websites, apps, blogs, and docs.

Unicode
U+2CFE
HTML Code
⳾
HEX Code
⳾
CSS Code
\2CFE
JS/JSON
\u2CFE
Unix/C/PHP/JAVA
0x2CFE
URL-encode
%E2%B3%BE

Customize Coptic Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⳾</span>
HTML Code:
<span>&#11518;</span>
HEX Code:
<span>&#x2CFE;</span>

Add with CSS

.coptic-full-stop::before {
  content: '\\2CFE';
}

Set it in JavaScript

document.querySelector('.coptic-full-stop').textContent = '⳾';
copied