Hyphenation Point

Shortcodes

Copy useful codes for hyphenation point symbol ‧ to use in websites, apps, blogs, and docs.

Unicode
U+2027
HTML Code
‧
HEX Code
‧
CSS Code
\2027
JS/JSON
\u2027
Unix/C/PHP/JAVA
0x2027
URL-encode
%E2%80%A7

Customize Hyphenation Point

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

  

How to use Hyphenation Point Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>‧</span>
HTML Code:
<span>&#8231;</span>
HEX Code:
<span>&#x2027;</span>

Add with CSS

.hyphenation-point::before {
  content: '\\2027';
}

Set it in JavaScript

document.querySelector('.hyphenation-point').textContent = '‧';
copied