Combining Grapheme Joiner

͏

Shortcodes

Copy useful codes for combining grapheme joiner symbol ͏ to use in websites, apps, blogs, and docs.

Unicode
U+034F
HTML Code
͏
HEX Code
͏
CSS Code
\034F
JS/JSON
\u034F
Unix/C/PHP/JAVA
0x34F
URL-encode
%CD%8F

Customize Combining Grapheme Joiner

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

͏
  

How to use Combining Grapheme Joiner Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>͏</span>
HTML Code:
<span>&#847;</span>
HEX Code:
<span>&#x034F;</span>

Add with CSS

.combining-grapheme-joiner::before {
  content: '\\034F';
}

Set it in JavaScript

document.querySelector('.combining-grapheme-joiner').textContent = '͏';
copied