HTML Entity for Swung Dash (⁓)

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

What You'll Learn

How to display the Swung Dash symbol (⁓) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2053 (SWUNG DASH) in the General Punctuation block (U+2000–U+206F)—a curved dash used in typography, dictionary notation, and decorative text.

Render it with ⁓, ⁓, or CSS escape \2053. There is no named HTML entity. Do not confuse ⁓ (swung dash) with – (en dash), — (em dash), or ~ (tilde, U+007E).

⚡ Quick Reference — Swung Dash

Unicode U+2053

General Punctuation

Hex Code ⁓

Hexadecimal reference

HTML Code ⁓

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2053
Hex code       ⁓
HTML code      ⁓
Named entity   (none)
CSS code       \2053
Block          General Punctuation (U+2000–U+206F)
Related        U+2013 = En Dash (–), U+2014 = Em Dash (—)
1

Complete HTML Example

This example demonstrates the Swung Dash symbol (⁓) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2053";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x2053;</p>
<p>Using HTML Code: &#8275;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Swung Dash entity is universally supported in all modern browsers:

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

👀 Live Preview

See the Swung Dash symbol (⁓) rendered in different contexts:

Typography word ⁓ variant — dictionary-style notation
Decorative Section ⁓ Title ⁓ End
Large glyph
Monospace &#x2053; &#8275; \2053
Not en dash ⁓ swung dash   – en dash (U+2013)

🧠 How It Works

1

Hexadecimal Code

&#x2053; uses the Unicode hexadecimal value 2053 to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8275; uses the decimal Unicode value 8275 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

\2053 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+2053 in the General Punctuation block (U+2000–U+206F). No named entity.

Use Cases

The Swung Dash symbol (⁓) commonly appears in:

📝 Typography

Formal documents and styled text with decorative dashes.

📚 Dictionary Notation

Reference works and linguistic content.

🎨 Decorative Content

Graphic design, logos, and creative writing.

📄 Formal Writing

Academic papers and professional publications.

📰 Editorial

Magazines and publications with decorative typography.

📐 Math Notation

Some mathematical and scientific typography contexts.

🎓 Education

Tutorials on punctuation and typographic symbols.

💡 Best Practices

Do

  • Use &#x2053; or &#8275; for the swung dash glyph
  • Pick one style (hex or decimal) per project for consistency
  • Verify your font supports General Punctuation characters
  • Add aria-label when the symbol carries meaning on its own
  • Test rendering across browsers and devices

Don’t

  • Confuse ⁓ (swung dash) with – (en dash) or — (em dash)
  • Substitute a tilde (~) when a swung dash is required
  • Put CSS escape \2053 directly in HTML text nodes
  • Expect a named HTML entity for U+2053—use numeric references
  • Use HTML entities in JS (use \u2053 instead)

Key Takeaways

1

Two HTML references both render ⁓

&#x2053; &#8275;
2

For CSS stylesheets, use the escape in the content property

\2053
3

Unicode U+2053 — SWUNG DASH

4

No named entity—use numeric references or CSS escape

5

Part of General Punctuation alongside en dash (–) and em dash (—)

❓ Frequently Asked Questions

Use &#x2053; (hex), &#8275; (decimal), or \2053 in CSS content. There is no named HTML entity. All three produce ⁓.
U+2053 (SWUNG DASH). General Punctuation block (U+2000–U+206F). Hex 2053, decimal 8275.
In typography, dictionary and reference notation, decorative text, formal writing, academic papers, editorial content, and any context that needs a curved dash for aesthetic or typographic purposes.
HTML numeric references (&#8275; or &#x2053;) go directly in markup. The CSS escape \2053 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select math symbols. Characters like ⁓ in the General Punctuation block use numeric hex or decimal references—standard practice for typographic punctuation.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, math, currency, 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