Ethiopic Section Mark

Shortcodes

Copy useful codes for ethiopic section mark symbol ፠ to use in websites, apps, blogs, and docs.

Unicode
U+1360
HTML Code
፠
HEX Code
፠
CSS Code
\1360
JS/JSON
\u1360
Unix/C/PHP/JAVA
0x1360
URL-encode
%E1%8D%A0

Customize Ethiopic Section Mark

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

  

How to use Ethiopic Section Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>፠</span>
HTML Code:
<span>&#4960;</span>
HEX Code:
<span>&#x1360;</span>

Add with CSS

.ethiopic-section-mark::before {
  content: '\\1360';
}

Set it in JavaScript

document.querySelector('.ethiopic-section-mark').textContent = '፠';
copied