HTML Entity for Uppercase S (S)

What You'll Learn
How to display the uppercase letter S in HTML using entity methods and direct character input. The letter S is the nineteenth letter of the Latin alphabet (U+0053) and is part of the Basic Latin block. It appears in proper nouns, acronyms (SQL, SSL, SVG, SEO), headings, and any text that requires capitalization. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.
This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &S; for this letter.
⚡ Quick Reference — Uppercase S Entity
U+0053Basic Latin (ASCII)
SHexadecimal reference
SDecimal reference
SType directly (no named entity)
Name Value
──────────── ──────────
Unicode U+0053
Hex code S
HTML code S
Named entity (none — use S directly)
CSS code \0053
Meaning Latin capital letter S
Related U+0073 = s (lowercase)
Block Basic Latin (U+0000–U+007F)Complete HTML Example
A simple example showing the uppercase letter S using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#letter:after{
content: "\0053";
}
</style>
</head>
<body>
<p>Symbol (hex): S</p>
<p>Symbol (decimal): S</p>
<p>Symbol (direct): S</p>
<p id="letter">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase letter S (U+0053) is universally supported in all browsers and platforms as part of Basic Latin:
👀 Live Preview
See the uppercase letter S in common text contexts:
🧠 How It Works
Hexadecimal Code
S uses the Unicode hexadecimal value 53 to display the letter. The x prefix indicates hexadecimal format.
Decimal HTML Code
S uses the decimal Unicode value 83 to display the same character. This is the ASCII/Unicode decimal for S.
Direct Character
Type S directly in HTML. There is no named entity like &S;; the character itself is the standard approach in body text.
CSS Entity
\0053 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: S. Unicode U+0053 sits in Basic Latin. The lowercase form is U+0073 (s). In normal text, typing S is preferred over numeric entities.
Use Cases
The uppercase letter S (or its entity forms) is commonly used in:
Sentence starts, proper nouns, and titles where the letter S begins a word.
Tutorials, API docs, and code samples that show the character S as an entity or escape.
Abbreviations such as SQL, SSL, SMTP, SVG, and SEO where S appears in the name.
Proper nouns and place names in English, Spanish, French, Portuguese, and other Latin-script languages.
Page titles, section headings, and navigation labels that start with S.
When building HTML in code, using S or S ensures correct output regardless of encoding context.
Using \0053 in the CSS content property to insert S via pseudo-elements.
💡 Best Practices
Do
- Type
Sdirectly in body content; use entities only when necessary - Serve pages as UTF-8 so Basic Latin characters render without entities
- Use numeric references (
SorS) when escaping is required - Use
\0053in CSScontentwhen generating the letter via pseudo-elements - Remember uppercase S is U+0053 and lowercase s is U+0073 when case matters
Don’t
- Overuse numeric entities for
Sin normal readable text - Expect a named HTML entity like
&S;—none exists for this letter - Use
\00053in CSS—the correct escape is\0053 - Double-encode numeric references in dynamically generated HTML
- Put CSS escape
\0053in HTML text nodes
Key Takeaways
Type S directly, or use hex/decimal references
S SFor CSS stylesheets, use the escape in the content property
\0053Unicode U+0053 — LATIN CAPITAL LETTER S
Nineteenth letter of the Latin alphabet (Basic Latin block)
Previous: Uppercase R Stroke (Ɍ) Next: Uppercase S Acute
❓ Frequently Asked Questions
S directly, or use S (hex), S (decimal), or \0053 in CSS content. There is no named HTML entity for S. For most content, typing S is standard; use numeric or CSS entities when escaping or generating via CSS.U+0053 (LATIN CAPITAL LETTER S). Basic Latin block. Hex 53, decimal 83. It is the nineteenth letter of the Latin alphabet and a standard character in virtually all Western scripts.S or S, or the CSS entity \0053. In UTF-8 pages you can type S directly.S or S) is used in HTML content; CSS entity \0053 is used in stylesheets in the content property of pseudo-elements. Both produce the character S.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
