Georgian Paragraph Separator

Shortcodes

Copy useful codes for georgian paragraph separator symbol ჻ to use in websites, apps, blogs, and docs.

Unicode
U+10FB
HTML Code
჻
HEX Code
჻
CSS Code
\10FB
JS/JSON
\u10FB
Unix/C/PHP/JAVA
0x10FB
URL-encode
%E1%83%BB

Customize Georgian Paragraph Separator

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

  

How to use Georgian Paragraph Separator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>჻</span>
HTML Code:
<span>&#4347;</span>
HEX Code:
<span>&#x10FB;</span>

Add with CSS

.georgian-paragraph-separator::before {
  content: '\\10FB';
}

Set it in JavaScript

document.querySelector('.georgian-paragraph-separator').textContent = '჻';
copied