Hyphenation Point

Shortcodes

Copy and paste codes for Hyphenation Point symbol ‧ to use in your websites, apps, blogs, and more.

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

Customize Hyphenation Point Symbol

Customize ‧ symbol as you like and download Hyphenation Point as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Hyphenation Point symbol in HTML, CSS, and JS?

Insert ‧ Hyphenation Point using HTML

1. Copy-paste Hyphenation Point directly:
<span>‧</span>
2. HTML Decimal Code:
<span>&#8231;</span>
3. Hexadecimal Code:
<span>&#x2027;</span>
Preview:

Add Hyphenation Point symbol with CSS

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

Hyphenation Point JavaScript Code

1. Direct Symbol:
document.querySelector('.hyphenation-point').textContent = '‧';
2. Unicode Escape for ‧:
document.querySelector('.hyphenation-point').textContent = '\u2027';
Preview: