HTML Entity for Lowercase S Swash Tail (ȿ)

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

What You'll Learn

How to display the lowercase s with swash tail (ȿ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+023F in the Latin Extended-B block—a precomposed glyph with an extended swash tail on the letter s. It appears in African language orthographies (notably Shona) and in linguistic and typographic documentation.

Render it with ȿ, ȿ, or CSS escape \023F. There is no named HTML entity for this character. In UTF-8 documents you can also type ȿ directly.

⚡ Quick Reference — Lowercase S Swash Tail Entity

Unicode U+023F

Latin Extended-B

Hex Code ȿ

Hexadecimal reference

HTML Code ȿ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+023F
Hex code       ȿ
HTML code      ȿ
Named entity   (none)
CSS code       \023F
Meaning        Latin small letter s with swash tail
Related        U+023E = Ⱦ (uppercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase s 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: "\023F";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x023F;</p>
<p>Symbol (decimal): &#575;</p>
<p>Symbol (direct): ȿ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase s swash tail (ȿ) is supported in all modern browsers as part of Latin Extended-B:

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

👀 Live Preview

See the lowercase s swash tail (ȿ) in typographic and linguistic contexts:

Large glyphȿ
Primary useAfrican orthographies (e.g. Shona) and linguistic documentation
UppercaseȾ (U+023E) — Latin capital letter s with swash tail
Not the same ass (plain)  |  ƨ (reverse)  |  decorative swash fonts
Numeric refs&#x023F; &#575; \023F

🧠 How It Works

1

Hexadecimal Code

&#x023F; uses the Unicode hexadecimal value 023F to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#575; uses the decimal Unicode value 575 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type ȿ directly in HTML when your document uses UTF-8 encoding. There is no named entity for s with swash tail.

HTML markup
4

CSS Entity

\023F 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+023F sits in Latin Extended-B. Uppercase equivalent: U+023E (Ⱦ). Do not confuse with plain s (U+0073) or decorative OpenType swash alternates.

Use Cases

The lowercase s swash tail (ȿ) is commonly used in:

🌎 African Orthographies

Used in Shona and related African language writing systems where the swash-tail s is a distinct orthographic letter.

📚 Linguistic Documentation

Appears in academic papers, language documentation, and dictionaries describing African language phonology and spelling.

📐 Typography

When a font includes this Unicode swash-tail s for linguistic or reference use. Use numeric references to output it in HTML or CSS.

⚙ Programmatic HTML

When building HTML from linguistic databases, using &#575; or &#x023F; guarantees correct output.

📄 Documentation

Tutorials on HTML entities, Unicode, or Latin Extended-B showing numeric codes for ȿ.

♿ Accessibility

Using the correct character (U+023F) ensures assistive technologies and search engines interpret encoded text accurately.

🎨 CSS Generated Content

Using \023F in the CSS content property to insert ȿ via pseudo-elements.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ȿ directly in UTF-8 source
  • Use numeric references (&#x023F; or &#575;) when escaping is required
  • Use \023F in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters
  • Distinguish ȿ (Unicode letter) from plain s (U+0073) and font swash alternates

Don’t

  • Expect a named HTML entity—none exists for ȿ
  • Substitute plain s when ȿ is required in orthographic text
  • Use U+0023F or CSS \0023F—the correct code is U+023F and \023F
  • Put CSS escape \023F in HTML text nodes
  • Confuse Unicode ȿ with decorative swash glyphs from OpenType stylistic sets

Key Takeaways

1

Type ȿ directly, or use hex/decimal references

&#x023F; &#575;
2

For CSS stylesheets, use the escape in the content property

\023F
3

Unicode U+023F — LATIN SMALL LETTER S WITH SWASH TAIL

4

Used in African orthographies; uppercase is Ⱦ (U+023E)

❓ Frequently Asked Questions

Use &#x023F; (hex), &#575; (decimal), or \023F in CSS content. There is no named HTML entity for ȿ. In UTF-8 you can also type ȿ directly.
U+023F (LATIN SMALL LETTER S WITH SWASH TAIL). Latin Extended-B block. Hex 023F, decimal 575. Used in African orthographies such as Shona. Uppercase form is U+023E (Ⱦ).
When displaying African language orthographies, linguistic documentation, typography references, or academic content that requires the swash-tail s character. In UTF-8 pages you can type ȿ directly.
No. There is no named HTML entity for the lowercase s swash tail (ȿ). Use numeric codes &#575; or &#x023F;, or the CSS entity \023F. In UTF-8 pages you can type ȿ directly.
U+023F (ȿ) is Latin small letter s with swash tail—a distinct Unicode character used in orthographies. U+0073 (s) is the standard Latin lowercase letter. They are not interchangeable in encoded text.

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