HTML Entity for Uppercase S Acute (Ś)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+015A

What Is the Uppercase S Acute Entity?

Uppercase S Acute (Ś) is the Unicode character at U+015A (LATIN CAPITAL LETTER S WITH ACUTE) in Latin Extended-A. It appears in Polish, Kashubian, and Lower Sorbian orthographies.

Remember
Character     Ś
Unicode       U+015A
Hex entity    Ś
Decimal       Ś
Named         Ś
CSS escape    \015A
Official name LATIN CAPITAL LETTER S WITH ACUTE
Lowercase     U+015B (ś)

All of these produce the same glyph: Ś. Compare with ordinary Uppercase S (U+0053) and Uppercase S Caron (U+0160).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterŚHTML text (UTF-8)
Named entityŚHTML markup — preferred for readability
Hex entityŚHTML markup
Decimal entityŚHTML markup
CSS escape\015AStylesheet content

When to Use Which

SituationUse
Readable multilingual HTMLŚ
Need numeric formŚ or Ś
Generated text via ::before / ::aftercontent: "\015A"
Lowercase s with acuteś (U+015B)
S with caron (Š)Use Š (U+0160)

Live Preview

Capital S with acute in common language contexts.

Large glyph Ś
Case pair Ś / ś
Sample words Święty, Śląsk
Compared S Ś Š ś
With entities Ś → Ś | Hex: Ś

Complete HTML Example

One page that shows this character with hex, decimal, named entity, CSS, and a language sample. Use View Output or open the live editor.

Hex + Decimal + Named + CSS

All common ways to produce Ś in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase S Acute</title>
  <style>
    #point::after {
      content: "\015A";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x015A;</p>
  <p>Using HTML Code: &#346;</p>
  <p>Using Named Entity: &Sacute;</p>
  <p id="point">Using CSS Entity: </p>
  <p lang="pl">&Sacute;wi&#x0119;ty, &Sacute;l&#x0105;sk</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex / decimal: U+015A → &#x015A; or &#346; in HTML.

2. Named: &Sacute; is the readable HTML5 alias for the same code point.

3. CSS: use \015A in content (not an HTML entity). #point::after appends that glyph after the paragraph text.

4. Language sample: lang="pl" marks Polish context; words like Święty and Śląsk use capital S with acute.

Pitfalls & Tips

Common mistakes when working with this character.

Named

Prefer &Sacute;

The named entity is easier to read than numeric forms. Keep the trailing semicolon.

Look-alikes

Not plain S or S caron

U+015A is acute (Ś). Do not confuse with plain S (U+0053) or caron Š (U+0160) — different letters.

Case

Use the correct case pair

Lowercase is &sacute; (U+015B). Named entities are case-sensitive: &Sacute; ≠ &sacute;.

Combining

Prefer the precomposed form

Use U+015A rather than S + combining acute unless you have a specific normalization reason.

CSS vs HTML

Do not mix escapes

\015A belongs in CSS. Named/numeric entities belong in HTML.

Semicolon

End references

Always finish with ; — write &Sacute;, not &Sacute.

Browser Support

Uppercase S Acute / LATIN CAPITAL LETTER S WITH ACUTE (U+015A) and its entity forms (&Sacute;, &#x015A;, &#346;, CSS \\015A) are supported in all mainstream browsers. Glyph shape depends on Latin Extended-A font coverage.

✓ Universal support

Uppercase S Acute

Encode with named, hex, decimal, or CSS escape — or paste the character in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+015A / entities Full support

Bottom line: Prefer &Sacute; for readable markup; use \\015A only inside CSS content. Do not confuse with &Scaron; (Š).

Key Takeaways

  • Unicode: this character is U+015A (decimal 346) — LATIN CAPITAL LETTER S WITH ACUTE.
  • HTML: prefer &Sacute;, or use &#x015A; / &#346;.
  • CSS: use \015A inside content for generated text.
  • Watch out: lowercase is &sacute;; U+015A ≠ U+0160 (S caron).

One line: U+015A → &Sacute; / &#x015A; / CSS \015A.

Frequently Asked Questions

Use &Sacute; (named), &#x015A; (hex), &#346; (decimal), or the CSS escape \015A in the content property. All render U+015A. You can also paste the character directly when your file is UTF-8.
U+015A (hex 015A, decimal 346). Unicode names it LATIN CAPITAL LETTER S WITH ACUTE. It belongs to Latin Extended-A and is used in Polish, Kashubian, and Lower Sorbian.
Yes. HTML5 defines &Sacute; for the uppercase form. The lowercase form uses &sacute; (U+015B).
U+015A is capital S with an acute (Ś). U+0053 is ordinary capital S. U+0160 is capital S with caron (Š) — a different letter used in Czech, Slovak, and other languages.
The case pair is U+015B (LATIN SMALL LETTER S WITH ACUTE, ś). Use &sacute;, &#x015B;, or &#347;.
HTML entities (&Sacute;, &#346;, or &#x015A;) go in markup. The CSS escape \015A is used in stylesheets (usually in the content property of ::before/::after). Both render the same glyph.

Did you know?

This character is Unicode U+015A (decimal 346) — official name LATIN CAPITAL LETTER S WITH ACUTE in Latin Extended-A. HTML5 defines the named entity &Sacute;. Its lowercase pair is U+015B (&sacute;). Common in Polish, Kashubian, and Lower Sorbian orthographies.

Next: Uppercase S Caron

Learn the HTML entity for Uppercase S Caron — next in this sequence.

Continue tutorial →

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