HTML Entity for Character Tie (⁀)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2040

What Is the Character Tie Entity?

Character Tie (⁀) is the Unicode character at U+2040 in the General Punctuation block (official name: CHARACTER TIE). It is a punctuation connector used in specialized typography and phonetic-style notation to show characters are tied together.

Remember
Character     ⁀
Unicode       U+2040
Hex entity    ⁀
Decimal       ⁀
CSS escape    \2040
Named entity  (none)

All of these produce the same glyph: ⁀. Prefer ordinary hyphens or spaces for everyday text; use ⁀ when you specifically need this tie mark.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⁀HTML text (UTF-8)
Hex entity⁀HTML markup
Decimal entity⁀HTML markup
CSS escape\2040Stylesheet content
Named entity—Not defined in HTML5

When to use which

SituationUse
Need the character tie glyph ⁀Type ⁀, or ⁀ / ⁀
Generated text via ::before / ::aftercontent: "\2040"
Lower undertie markUse ‿ (U+203F)
Everyday joining of wordsUse hyphen - or a space
Looking for &tie; or similarDoes not exist for U+2040 — use numeric form

Live Preview

Character Tie rendered in common writing contexts.

Inline text a⁀b tied
Large glyph ⁀
Compared ⁀   ‿   -
Monospace mark ⁀ → character tie
With entities Hex: ⁀ | Decimal: ⁀

Complete HTML Example

One page that shows Character Tie with the hex entity, decimal entity, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

All four ways to produce ⁀ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Character Tie (⁀) in HTML</title>
  <style>
    #point::after {
      content: "\2040";
    }
  </style>
</head>
<body>
  <p>Character Tie using Hex Code: &#x2040;</p>
  <p>Character Tie using HTML Code: &#8256;</p>
  <p id="point">Character Tie using CSS Entity: </p>
  <p>Typed directly: ⁀</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2040 → &#x2040; in HTML. The browser turns it into ⁀.

2. Decimal: same code point as 8256 → &#8256;. Same result as hex.

3. CSS: use \2040 in content (not an HTML entity). #point::after appends that ⁀ after the paragraph text.

4. Typed ⁀: fine in UTF-8 pages. All four lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with Character Tie entities.

Named?

No named entity

HTML5 does not define &tie; for U+2040. Use numeric forms.

CSS vs HTML

Do not mix escapes

\2040 belongs in CSS. &#x2040; / &#8256; belong in HTML.

⁀ vs ‿

Different characters

⁀ is U+2040 (character tie). Undertie ‿ is U+203F.

Fonts

Check the glyph

General Punctuation coverage varies. If ⁀ is missing, explain the tie in nearby text.

Semicolon

End references

Always finish with ; — write &#8256;, not &#8256.

Use

Specialized only

Most everyday pages do not need ⁀. Prefer a hyphen for normal word joining.

Browser Support

Character Tie (U+2040) and its numeric entity forms (&#x2040;, &#8256;, CSS \\2040) are supported in all mainstream browsers. Glyph shape depends on the font.

✓ Universal support

Character Tie (⁀)

Encode with hex, decimal, or CSS escape — or paste ⁀ in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2040 / entities Full support

Bottom line: Use &#x2040; or &#8256; for the Unicode glyph, and \\2040 only inside CSS content. Prefer - for ordinary joining.

Key Takeaways

  • Unicode: character tie is U+2040 (decimal 8256).
  • HTML: use &#x2040; or &#8256; when you need an entity.
  • CSS: use \2040 inside content for generated text.
  • Watch out: ⁀ ≠ ‿ (character tie ≠ undertie).

One line: U+2040 → &#x2040; / &#8256; / CSS \2040, or paste ⁀.

Frequently Asked Questions

Use &#x2040; (hex), &#8256; (decimal), or the CSS escape \2040 in the content property. All render ⁀. You can also paste ⁀ directly when your file is UTF-8.
U+2040 (hex 2040, decimal 8256). Unicode names it CHARACTER TIE. It belongs to the General Punctuation block.
No. HTML5 does not define a named entity for ⁀. Use numeric references like &#x2040; or &#8256;.
⁀ (U+2040) is character tie (above-style connector). ‿ (U+203F) is undertie — a related but different punctuation mark that sits lower.
HTML entities (&#8256; or &#x2040;) go in markup. The CSS escape \2040 is used in stylesheets (usually in the content property of ::before/::after). Both render ⁀.
Use it in specialized typography, phonetic notation, or when you need this exact tie glyph. Prefer ordinary hyphens or spaces for everyday text.

Did you know?

Character tie is Unicode U+2040 (decimal 8256) — official name CHARACTER TIE in the General Punctuation block. HTML5 has no named entity. It is a punctuation connector and is not undertie (U+203F ‿).

Next: Check Mark

Learn the HTML entity for check mark (✓) — the common approval tick.

Check Mark tutorial →

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