Ethiopic Full Stop

Shortcodes

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

Unicode
U+1362
HTML Code
።
HEX Code
።
CSS Code
\1362
JS/JSON
\u1362
Unix/C/PHP/JAVA
0x1362
URL-encode
%E1%8D%A2

Customize Ethiopic Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>።</span>
HTML Code:
<span>&#4962;</span>
HEX Code:
<span>&#x1362;</span>

Add with CSS

.ethiopic-full-stop::before {
  content: '\\1362';
}

Set it in JavaScript

document.querySelector('.ethiopic-full-stop').textContent = '።';
copied