HTML Entity for Uppercase S Acute (Ś)

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

What You'll Learn

How to display the uppercase S with acute accent (Ś) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+015A in the Latin Extended-A block. It is essential in Polish (e.g. Święty — holy, Śląsk — Silesia), Kashubian, and Lower Sorbian orthography, where it represents a voiceless alveolo-palatal fricative (similar to English “sh”).

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

⚡ Quick Reference — Uppercase S Acute Entity

Unicode U+015A

Latin Extended-A

Hex Code Ś

Hexadecimal reference

HTML Code Ś

Decimal reference

Named Entity Ś

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+015A
Hex code       Ś
HTML code      Ś
Named entity   Ś
CSS code       \015A
Meaning        Latin capital letter S with acute
Related        U+015B = ś (ś)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

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

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

🌐 Browser Support

The uppercase S acute (Ś) and the named entity &Sacute; 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 acute (Ś) in language and content contexts:

Large glyphŚ
PolishŚwięty (holy)  |  Śląsk (Silesia)  |  Świat (world)
Named entity&Sacute; renders as Ś
Lowercaseś (U+015B) — use &sacute;
Not the same asS (plain)  |  Š (caron, Š)  |  &sect; (section sign)
Numeric refs&#x015A; &#346; &Sacute; \015A

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&Sacute; is the named entity for S acute—readable in source HTML and the preferred option for Polish and related language content.

HTML markup
4

CSS Entity

\015A 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+015A sits in Latin Extended-A. Lowercase equivalent: U+015B (ś, &sacute;). Do not confuse with plain S (U+0053) or Š (caron).

Use Cases

The uppercase S acute (Ś) is commonly used in:

🇵 Polish

Essential for correct Polish spelling at word starts and in proper nouns (e.g. Święty, Śląsk, Świat). Use the entity or UTF-8 for proper display and SEO.

🇵 Kashubian & Lower Sorbian

Used in Kashubian and Lower Sorbian orthography for the voiceless alveolo-palatal fricative in capital form.

📚 Language Learning

Teach correct spelling and pronunciation for Polish and related languages that use this character.

🌐 Multilingual Sites

Support proper rendering of names, place names, and content in Polish and related languages.

📄 Typography & Publishing

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

♿ Accessibility

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

🎨 CSS Generated Content

Using \015A 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 &Sacute; for readable HTML when a named form is preferred
  • Set lang="pl" on Polish content for correct pronunciation hints
  • Use \015A in CSS content when generating the symbol via pseudo-elements
  • Distinguish Ś (acute) from Š (caron) and plain S (U+0053)

Don’t

  • Substitute plain S when Ś is required in Polish text
  • Confuse Ś (acute, Polish) with Š (caron, Czech/Slovak š)
  • Confuse Ś with &sect; (section sign, U+00A7)
  • Put CSS escape \015A in HTML text nodes
  • Use \0015A in CSS—the correct escape is \015A

Key Takeaways

1

The named entity is the most readable form

&Sacute;
2

Numeric alternatives: hex and decimal

&#x015A; &#346;
3

Unicode U+015A — LATIN CAPITAL LETTER S WITH ACUTE

4

Essential for Polish; lowercase is ś (&sacute;)

❓ Frequently Asked Questions

Use &Sacute; (named), &#x015A; (hex), &#346; (decimal), or \015A in CSS content. In UTF-8 you can also type Ś directly.
U+015A (LATIN CAPITAL LETTER S WITH ACUTE). Latin Extended-A block. Hex 015A, decimal 346. Used in Polish, Kashubian, and Lower Sorbian. Lowercase form is U+015B (ś).
When displaying Polish, Kashubian, or Lower Sorbian text that uses Ś at word starts or in proper nouns, in multilingual sites, language learning content, dictionaries, or when you need a reliable character reference. In UTF-8 pages you can type Ś directly.
The named HTML entity is &Sacute;. You can also use &#346; or &#x015A;, or the CSS entity \015A.
Ś (U+015A) is S with acute, used in Polish (e.g. Święty). Š (U+0160) is S with caron, used in Czech and Slovak (e.g. š in košice). They are different characters—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