Paragraphos

Shortcodes

Copy useful codes for paragraphos symbol ⸏ to use in websites, apps, blogs, and docs.

Unicode
U+2E0F
HTML Code
⸏
HEX Code
⸏
CSS Code
\2E0F
JS/JSON
\u2E0F
Unix/C/PHP/JAVA
0x2E0F
URL-encode
%E2%B8%8F

Customize Paragraphos

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

  

How to use Paragraphos Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸏</span>
HTML Code:
<span>&#11791;</span>
HEX Code:
<span>&#x2E0F;</span>

Add with CSS

.paragraphos::before {
  content: '\\2E0F';
}

Set it in JavaScript

document.querySelector('.paragraphos').textContent = '⸏';
copied