HTML Entity for Uppercase S Circumflex (Ŝ)

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

What You'll Learn

How to display the uppercase S with circumflex (Ŝ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+015C in the Latin Extended-A block. It is one of the six diacritic letters in Esperanto orthography (e.g. Ŝati — to enjoy, Ŝipo — ship, Ŝafo — sheep), where it represents a voiceless postalveolar fricative (similar to English “sh”).

Render it with Ŝ, Ŝ, Ŝ, or CSS escape \015C. The named entity Ŝ is the most readable option in HTML source.

⚡ Quick Reference — Uppercase S Circumflex Entity

Unicode U+015C

Latin Extended-A

Hex Code Ŝ

Hexadecimal reference

HTML Code Ŝ

Decimal reference

Named Entity Ŝ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+015C
Hex code       Ŝ
HTML code      Ŝ
Named entity   Ŝ
CSS code       \015C
Meaning        Latin capital letter S with circumflex
Related        U+015D = ŝ (ŝ)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the uppercase S circumflex (Ŝ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\015C";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x015C;</p>
<p>Symbol (decimal): &#348;</p>
<p>Symbol (named): &Scirc;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase S circumflex (Ŝ) and the named entity &Scirc; are supported in all modern browsers as part of Latin Extended-A:

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

👀 Live Preview

See the uppercase S circumflex (Ŝ) in language and content contexts:

Large glyphŜ
EsperantoŜati (to enjoy)  |  Ŝipo (ship)  |  Ŝafo (sheep)
Named entity&Scirc; renders as Ŝ
Lowercaseŝ (U+015D) — use &scirc;
Not the same asS (plain)  |  Š (caron)  |  Ş (cedilla)
Numeric refs&#x015C; &#348; &Scirc; \015C

🧠 How It Works

1

Hexadecimal Code

&#x015C; uses the Unicode hexadecimal value 015C to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&Scirc; is the named entity for S circumflex—readable in source HTML and the preferred option for Esperanto content.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ŝ. Unicode U+015C sits in Latin Extended-A. Lowercase equivalent: U+015D (ŝ, &scirc;). Do not confuse with plain S (U+0053), Š (caron), or Ş (cedilla).

Use Cases

The uppercase S circumflex (Ŝ) is commonly used in:

🇵 Esperanto

Essential for correct Esperanto spelling at word starts (e.g. Ŝati, Ŝipo, Ŝafo). One of six standard diacritic letters in the Esperanto alphabet.

📚 Language Learning

Teach correct spelling and pronunciation for Esperanto and related constructed or international language content.

🌐 Multilingual Sites

Support proper rendering of Esperanto text on community sites, wikis, forums, and educational platforms.

📄 Typography & Publishing

Ensure correct character display in digital publications, dictionaries, and linguistic resources.

🔬 Linguistic & Academic

Used in phonetic notation, constructed-language studies, and academic papers referencing Esperanto orthography.

♿ Accessibility

Using the correct character (U+015C) with proper lang attributes (e.g. lang="eo") ensures assistive technologies pronounce content correctly.

🎨 CSS Generated Content

Using \015C 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 &Scirc; for readable HTML when a named form is preferred
  • Set lang="eo" on Esperanto content for correct pronunciation hints
  • Use \015C in CSS content when generating the symbol via pseudo-elements
  • Distinguish Ŝ (circumflex) from Š (caron), Ş (cedilla), and plain S (U+0053)

Don’t

  • Substitute plain S when Ŝ is required in Esperanto text
  • Confuse Ŝ (circumflex) with Š (caron) or Ş (cedilla)
  • Use Š (caron) in Esperanto—Esperanto uses circumflex, not caron
  • Put CSS escape \015C in HTML text nodes
  • Use \0015C in CSS—the correct escape is \015C

Key Takeaways

1

The named entity is the most readable form

&Scirc;
2

Numeric alternatives: hex and decimal

&#x015C; &#348;
3

Unicode U+015C — LATIN CAPITAL LETTER S WITH CIRCUMFLEX

4

Essential for Esperanto; lowercase is ŝ (&scirc;)

❓ Frequently Asked Questions

Use &Scirc; (named), &#x015C; (hex), &#348; (decimal), or \015C in CSS content. In UTF-8 you can also type Ŝ directly.
U+015C (LATIN CAPITAL LETTER S WITH CIRCUMFLEX). Latin Extended-A block. Hex 015C, decimal 348. Essential in Esperanto orthography. Lowercase form is U+015D (ŝ).
When displaying Esperanto text at word starts or in proper nouns, language learning content, multilingual sites, wikis, forums, or linguistic and academic material that uses Ŝ. In UTF-8 pages you can type Ŝ directly.
The named HTML entity is &Scirc;. You can also use &#348; or &#x015C;, or the CSS entity \015C.
Ŝ (U+015C) is S with circumflex, used in Esperanto (e.g. Ŝati). Š (U+0160) is S with caron, used in Czech and Slovak. They are different characters with different diacritic marks—do not substitute one for the other.

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