HTML Entity for Lowercase Z Swash Tail (ɀ)

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

What You'll Learn

How to display the lowercase z swash tail (ɀ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0240 in the Latin Extended-B block—a specialized z with a decorative swash tail, used in linguistics, typography references, and Unicode character documentation.

Render it with ɀ, ɀ, or CSS escape \0240. There is no named HTML entity for this character. In UTF-8 documents you can also type ɀ directly. Do not confuse ɀ (z swash tail) with plain z (U+007A), ƶ (z stroke), or calligraphic styled z in regular fonts.

⚡ Quick Reference — Lowercase Z Swash Tail Entity

Unicode U+0240

Latin Extended-B

Hex Code ɀ

Hexadecimal reference

HTML Code ɀ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0240
Hex code       ɀ
HTML code      ɀ
Named entity   (none)
CSS code       \0240
Meaning        Latin small letter z with swash tail
Also called    z swash tail
Related        U+023F = ȿ (uppercase)
               U+007A = z (plain letter)
               U+01B6 = ƶ (z stroke)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase z swash tail (ɀ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0240";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0240;</p>
<p>Symbol (decimal): &#576;</p>
<p>Symbol (direct): ɀ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase z swash tail (ɀ) is supported in modern browsers when the font includes Latin Extended-B glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase z swash tail (ɀ) in typography and reference contexts:

Large glyphɀ
Unicode nameLatin small letter z with swash tail
Uppercaseȿ (U+023F) — Latin capital letter z with swash tail
Latin letterPlain z (U+007A) lacks the swash tail; ɀ is a distinct encoded character
Not the same asz (plain)  |  ƶ (z stroke)  |  ž (z caron)
Numeric refs&#x0240; &#576; \0240

🧠 How It Works

1

Hexadecimal Code

&#x0240; uses the Unicode hexadecimal value 0240 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#576; uses the decimal Unicode value 576 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

Direct Character

Type ɀ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this letter.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: ɀ. Unicode U+0240 sits in Latin Extended-B. Do not confuse with plain z (U+007A), ƶ (z stroke), or ž (z caron). Use fonts with extended Latin support for reliable rendering.

Use Cases

The lowercase z swash tail (ɀ) is commonly used in:

🔤 Linguistics

Specialized notation and character references in linguistic and philological content.

🎨 Typography

Font specimens, calligraphy references, and design documentation for swash-letter forms.

📄 Academic content

Unicode charts, character tables, and scholarly resources documenting Latin Extended-B letters.

📚 Education

Typography courses and Unicode tutorials teaching extended Latin characters.

🌐 Digital humanities

Encoded texts and archives requiring accurate representation of rare Latin letters in HTML.

🔍 Entity reference

HTML entity guides and developer documentation listing Unicode character codes.

⚙ Programmatic HTML

When building HTML from character data, using &#576; or &#x0240; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ɀ directly in UTF-8 source
  • Use numeric references (&#x0240; or &#576;) when escaping is required
  • Use \0240 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters
  • Distinguish ɀ (swash tail) from plain z and other z variants

Don’t

  • Substitute plain z or a styled font glyph when ɀ is required as the Unicode character
  • Confuse ɀ (z swash tail) with ƶ (z stroke) or ž (z caron)
  • Use the old incorrect CSS escape \00240—the correct value is \0240
  • Expect a named HTML entity—none exists for ɀ
  • Put CSS escape \0240 in HTML text nodes

Key Takeaways

1

Type ɀ directly, or use hex/decimal references

&#x0240; &#576;
2

For CSS stylesheets, use the escape in the content property

\0240
3

Unicode U+0240 — LATIN SMALL LETTER Z WITH SWASH TAIL

4

Latin Extended-B specialized letter; uppercase is ȿ (U+023F)

❓ Frequently Asked Questions

Use &#x0240; (hex), &#576; (decimal), or \0240 in CSS content. There is no named HTML entity. In UTF-8 you can also type ɀ directly.
U+0240 (LATIN SMALL LETTER Z WITH SWASH TAIL). Latin Extended-B block. Hex 0240, decimal 576. Uppercase form is U+023F (ȿ).
For linguistic notation, typography references, academic character charts, and any content requiring the specialized z-with-swash-tail Unicode character.
ɀ (U+0240) is z with swash tail—a distinct Latin Extended-B letter. z (U+007A) is the plain lowercase letter. A calligraphic z in a font is not the same as the Unicode character ɀ.
No. Use &#576; or &#x0240; in HTML, or \0240 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, 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