Ethiopic Semicolon

Shortcodes

Copy useful codes for ethiopic semicolon symbol ፤ to use in websites, apps, blogs, and docs.

Unicode
U+1364
HTML Code
፤
HEX Code
፤
CSS Code
\1364
JS/JSON
\u1364
Unix/C/PHP/JAVA
0x1364
URL-encode
%E1%8D%A4

Customize Ethiopic Semicolon

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

  

How to use Ethiopic Semicolon Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>፤</span>
HTML Code:
<span>&#4964;</span>
HEX Code:
<span>&#x1364;</span>

Add with CSS

.ethiopic-semicolon::before {
  content: '\\1364';
}

Set it in JavaScript

document.querySelector('.ethiopic-semicolon').textContent = '፤';
copied