HTML Entity for Hyphenation Point (‧)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2027

What You'll Learn

How to display the Hyphenation Point (‧) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2027 (HYPHENATION POINT) in the General Punctuation block (U+2000–U+206F). It indicates where a word may be broken for hyphenation.

Use ‧, ‧, or CSS \2027. There is no named HTML entity—use hex, decimal, or CSS escapes. Useful in typography, dictionaries, and manual word-break control.

⚡ Quick Reference — Hyphenation Point

Unicode U+2027

General Punctuation

Hex Code ‧

Hexadecimal reference

HTML Code ‧

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2027
Hex code       ‧
HTML code      ‧
Named entity   (none)
CSS code       \2027
Meaning        Hyphenation / word-break hint
CSS note       \2027 or \02027 in content property
1

Complete HTML Example

This example demonstrates the Hyphenation Point (‧) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2027";
  }
 </style>
</head>
<body>
<p>Hyphenation Point using Hexadecimal: &#x2027;</p>
<p>Hyphenation Point using Decimal: &#8231;</p>
<p id="point">Hyphenation Point using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Hyphenation Point (‧) is supported in all modern browsers; most fonts include General Punctuation (U+2000–U+206F):

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

Hyphenation Point (‧) as a visible word-break hint:

Large glyph
In word hypo‧thesis
vs soft hyphen ‧ visible (U+2027)   &shy; optional (U+00AD)
Numeric refs &#x2027; &#8231; \2027

🧠 How It Works

1

Hexadecimal Code

&#x2027; uses Unicode hexadecimal 2027 to display the Hyphenation Point character (‧) in HTML markup.

HTML markup
2

Decimal HTML Code

&#8231; uses decimal Unicode value 8231 for the same character.

HTML markup
3

CSS Entity

\2027 is used in CSS, typically in the content property of pseudo-elements such as ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2027 is in General Punctuation. Next: Identical To.

Use Cases

The Hyphenation Point (U+2027) is commonly used in:

↩ Word-break hints

Show where a long word may be broken across lines in justified or narrow layouts.

📰 Typography

Control hyphenation in articles, columns, and print-style layouts.

📖 Dictionaries

Syllable breaks or hyphenation points in dictionary and pronunciation guides.

🔤 Linguistic

Mark hyphenation in linguistic notation, language learning, or academic texts.

📄 Narrow columns

Manual breaks in narrow containers; pair with CSS hyphens when appropriate.

🎨 Design specs

Consistent word-breaking in design systems and typographic guidelines.

💡 Best Practices

Do

  • Use &#x2027; or &#8231; in HTML (no named entity)
  • Use ‧ for visible break hints; use &shy; for optional line-break hyphens
  • Consider CSS hyphens: auto with lang for automatic hyphenation
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one method (hex or decimal) consistent across the document
  • Use where it helps visual readers without harming comprehension

Don’t

  • Expect a named HTML entity for U+2027
  • Put CSS escape \2027 in HTML text nodes
  • Confuse hyphenation point (‧) with hyphen bullet (⁃) or hyphen (‐)
  • Use ‧ when &shy; (invisible until break) is what you need
  • Overuse visible break marks in body copy without typographic need

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2027

&#x2027; &#8231;
2

For CSS, use \2027 in the content property

3

Unicode U+2027 — HYPHENATION POINT

4

No named entity—use hex or decimal

❓ Frequently Asked Questions

Use &#x2027; (hex), &#8231; (decimal), or \2027 in CSS content. There is no named entity. All three methods render the same glyph (‧).
U+2027 (HYPHENATION POINT). General Punctuation block (U+2000–U+206F). Hex 2027, decimal 8231. Indicates where a word may be broken for hyphenation.
For word-break hints and hyphenation control, typography and justified text, dictionaries and pronunciation guides, and content that needs visible break points.
No. Use hexadecimal &#x2027;, decimal &#8231;, or CSS \2027 in the content property of pseudo-elements.
‧ (U+2027) is visible and marks a suggested break. &shy; (U+00AD) is invisible until the line breaks, then shows a hyphen. Use ‧ for a visible hint; use &shy; for optional breaks.
HTML references (&#8231; or &#x2027;) go in markup. The CSS escape \2027 belongs in stylesheets, typically in the content property of pseudo-elements. Both render ‧.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, punctuation, math, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful