HTML Entity for Uppercase S Comma Below (Ș)

What You'll Learn
How to display the uppercase s with comma below (Ș) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0218 in the Latin Extended-B block. It is the standard capital letter for Romanian (e.g. Școală — school, Știri — news), representing a voiceless postalveolar fricative (similar to English “sh”).
Render it with Ș, Ș, or CSS escape \0218. There is no named HTML entity for this character. In UTF-8 documents you can also type Ș directly. Do not confuse Ș with Turkish Ş (S with cedilla, U+015E)—a different character.
⚡ Quick Reference — Uppercase S Comma Below Entity
U+0218Latin Extended-B
ȘHexadecimal reference
ȘDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0218
Hex code Ș
HTML code Ș
Named entity (none)
CSS code \0218
Meaning Latin capital letter s with comma below
Related U+0219 = ș (lowercase)
U+015E = Ş (s cedilla—not Romanian)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase s comma below (Ș) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0218";
}
</style>
</head>
<body>
<p>Symbol (hex): Ș</p>
<p>Symbol (decimal): Ș</p>
<p>Symbol (direct): Ș</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase s comma below (Ș) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase s comma below (Ș) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ș uses the Unicode hexadecimal value 0218 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ș uses the decimal Unicode value 536 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type Ș directly in HTML when your document uses UTF-8 encoding. There is no named entity for this Romanian letter.
CSS Entity
\0218 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: Ș. Unicode U+0218 sits in Latin Extended-B. Lowercase equivalent: U+0219 (ș). Do not confuse with Ş (s cedilla) or plain S (U+0053).
Use Cases
The uppercase s comma below (Ș) is commonly used in:
Essential for correct modern Romanian spelling at word starts (e.g. Școală, Știri). Use U+0218, not the legacy s-cedilla (U+015E).
Support proper rendering of Romanian place names, personal names, and content on international websites.
Teach correct Romanian spelling and distinguish comma below from cedilla and caron variants of s.
Ensure correct character display in digital publications, dictionaries, and government or legal documents in Romanian.
Used in Romanian language studies, orthography guides, and academic papers on Balkan and Romance linguistics.
Using the correct character (U+0218) with proper lang attributes (e.g. lang="ro") ensures assistive technologies pronounce content correctly.
Using \0218 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 (
ȘorȘ) when escaping is required - Set
lang="ro"on Romanian content for correct pronunciation hints - Use
\0218in CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ș (comma below) from Ş (cedilla) and plain S (U+0053)
Key Takeaways
Type Ș directly, or use hex/decimal references
Ș ȘFor CSS stylesheets, use the escape in the content property
\0218Unicode U+0218 — LATIN CAPITAL LETTER S WITH COMMA BELOW
Essential for Romanian; lowercase is ș (U+0219)
Previous: Uppercase S Circumflex (Ŝ) Next: Uppercase S Reverse
❓ Frequently Asked Questions
Ș (hex), Ș (decimal), or \0218 in CSS content. There is no named HTML entity for Ș. In UTF-8 you can also type Ș directly.U+0218 (LATIN CAPITAL LETTER S WITH COMMA BELOW). Latin Extended-B block. Hex 0218, decimal 536. Standard in modern Romanian orthography. Lowercase form is U+0219 (ș).Ș or Ș, or the CSS entity \0218. In UTF-8 pages you can type Ș directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
