HTML Entity for Fermata (͒)

What You'll Learn
How to display the Fermata symbol (͒) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0352 (COMBINING FERMATA) in the Combining Diacritical Marks block (U+0300–U+036F)—a musical notation mark indicating a note or rest should be prolonged beyond its written duration.
Render it with ͒, ͒, or CSS escape \0352. There is no named HTML entity. U+0352 is a combining character—pair it with a base character (e.g. a note) so it displays above the note. For a standalone fermata glyph see U+1D110 (Musical Symbols block).
⚡ Quick Reference — Fermata
U+0352Combining Diacritical Marks
͒Hexadecimal reference
͒Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0352
Hex code ͒
HTML code ͒
Named entity (none)
CSS code \0352
Meaning Combining fermata (hold / pause mark)
Related U+1D110 = Musical symbol fermata (𝄐); combining mark above base charComplete HTML Example
This example demonstrates the Fermata (͒) using hexadecimal code, decimal HTML code, and a CSS content escape. The combining mark is shown on a musical note (♪):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0352";
}
</style>
</head>
<body>
<p>Fermata using Hexadecimal: ♪͒</p>
<p>Fermata using HTML Code: ♪͒</p>
<p id="point">Fermata using CSS Entity on note: ♪</p>
</body>
</html>🌐 Browser Support
The Fermata combining mark is supported in modern browsers when paired with a base character and a suitable font:
👀 Live Preview
See the combining fermata (͒) on a note and in notation context:
🧠 How It Works
Hexadecimal Code
͒ uses the Unicode hexadecimal value 0352 to display the combining fermata. The x prefix indicates hexadecimal format.
Decimal HTML Code
͒ uses the decimal Unicode value 850 to display the same combining character.
CSS Entity
\0352 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the combining fermata mark. Unicode U+0352 is in Combining Diacritical Marks. Place it after a base character (e.g. ♪) so it renders above the note. No named HTML entity.
Use Cases
The Fermata symbol (͒) is commonly used in:
Show fermata marks in web-based sheet music, notation viewers, and music apps.
Display fermatas in guitar tabs, piano scores, and other sheet music rendered in HTML.
Music theory lessons, tutorials, and educational content about notation and phrasing.
Export or display notation from composition software that includes fermata symbols.
Combine lyrics with hold or pause marks in song sheets and chord charts.
Rehearsal notes and conductor score annotations indicating hold or pause on the web.
💡 Best Practices
Do
- Pair U+0352 with a base character (e.g. ♪͒) for correct placement
- Add
aria-label="fermata"or visible text (“hold”) for accessibility - Use a font that supports Combining Diacritical Marks and music symbols
- Serve pages with UTF-8 (
<meta charset="utf-8">) - Test rendering across browsers; combining characters can vary by font
Don’t
- Expect a named entity—none exists for U+0352
- Use U+0352 alone without context when a standalone fermata glyph is needed (consider U+1D110)
- Put CSS escape
\0352in HTML text nodes - Rely on the symbol alone without accessible text for screen readers
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS render the fermata mark
͒ ͒For CSS stylesheets, use the escape in the content property
\0352Unicode U+0352 — COMBINING FERMATA
Combining character—place after a base character (e.g. a note)
Three methods, no named HTML entity
❓ Frequently Asked Questions
͒ (hex), ͒ (decimal), or \0352 in CSS content. Pair with a base character (e.g. ♪͒). There is no named entity.U+0352 (COMBINING FERMATA). Combining Diacritical Marks block (U+0300–U+036F). Hex 0352, decimal 850. Appears above a preceding character in musical notation.͒ or ͒) go in markup. The CSS escape \0352 is used in stylesheets, typically in the content property of pseudo-elements. Same combining mark, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — music symbols, punctuation, and more.
8 people found this page helpful
