HTML Entity for Service Mark (℠)

What You'll Learn
How to display the Service Mark (℠) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2120 (SERVICE MARK) in the Letterlike Symbols block (U+2100–U+214F)—used to indicate that a word, phrase, or logo is a service mark for services rather than goods.
Render it with ℠, ℠, or CSS \2120. There is no named HTML entity. Do not confuse ℠ with U+2122 (™, trademark, ™) or U+00AE (®, registered sign).
⚡ Quick Reference — Service Mark
U+2120Letterlike Symbols
℠Hexadecimal reference
℠Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2120
Hex code ℠
HTML code ℠
Named entity (none)
CSS code \2120
Meaning Service mark (for services)
Related U+2122 = trade mark sign (™, ™)
U+00AE = registered sign (®)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing ℠ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2120";
}
</style>
</head>
<body>
<p>Service mark (hex): ℠</p>
<p>Service mark (decimal): ℠</p>
<p id="point">Service mark (CSS): </p>
</body>
</html>🌐 Browser Support
The Service Mark (℠) is supported in all modern browsers when fonts include Letterlike Symbols:
👀 Live Preview
See the Service Mark in branding and legal notice contexts:
🧠 How It Works
Hexadecimal Code
℠ uses Unicode hexadecimal 2120 to display the service mark in HTML markup.
Decimal HTML Code
℠ uses decimal Unicode value 8480 for the same character.
CSS Entity
\2120 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Service mark result
All three methods produce ℠. Unicode U+2120 in Letterlike Symbols. No named entity. Next: Set Minus.
Use Cases
The Service Mark (℠) commonly appears in:
Company names, service names, and logos indicating service mark protection.
Terms of service, legal disclaimers, and trademark notices.
Corporate websites, service pages, and marketing materials.
Business documentation, compliance pages, and brand guidelines.
Product and service listings that reference service marks.
Unicode and HTML entity reference pages for legal symbols.
💡 Best Practices
Do
- Use ℠ for service marks (services), not goods
- Use
℠or℠in HTML (no named entity) - Style as superscript with CSS when matching legal convention
- Add
aria-labelfor accessibility on legal notices - Distinguish ℠ from ™ (trademark) and ® (registered)
Don’t
- Confuse ℠ with ™ (
™) or ® (®) - Use padded Unicode notation like U+02120—the correct value is
U+2120 - Expect a named HTML entity for U+2120
- Put CSS escape
\2120in HTML text nodes - Use ℠ without understanding legal trademark requirements
Key Takeaways
❓ Frequently Asked Questions
℠ (hex), ℠ (decimal), or \2120 in CSS content. There is no named HTML entity. All three render ℠.U+2120 (SERVICE MARK). Letterlike Symbols (U+2100–U+214F). Hex 2120, decimal 8480.™) is the trade mark sign. ® (U+00AE, ®) is the registered sign. They are different characters.Explore More HTML Entities!
Discover 1500+ HTML character references — legal symbols, punctuation, and more.
8 people found this page helpful
