HTML Entity for Acute Tone Mark (́)

Beginner
⏱️ 5 min read
📚 Updated: May 2026
🎯 1 Code Example
Unicode U+0341

What You'll Learn

How to encode U+0341 (combining acute tone mark) in HTML and CSS. Like other combining marks, it attaches to the preceding base character—write the letter first, then the reference (for example á).

Unicode assigns this code point for tone notation separately from U+0301 combining acute accent used for many European stress marks. For typical Spanish/French é, authors usually use precomposed U+00E9 or e + U+0301; use U+0341 when your orthography or data standard calls for the tone-mark variant. See combining acute accent (U+0301) for comparison.

⚡ Quick Reference — Acute Tone Mark Entity

Unicode U+0341

Combining Diacritical Marks

Hex Code ́

Hexadecimal reference

HTML Code ́

Decimal reference

CSS Code \0341

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0341
Hex code       ́
HTML code      ́
Named entity   (none)
CSS code       \0341
1

Complete HTML Example

This example attaches U+0341 to the letter a using hex, decimal, and a CSS content string:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "a\0341";
  }
 </style>
</head>
<body>

<p>Tone mark (hex on a): a&#x0341;</p>
<p>Tone mark (decimal on a): a&#833;</p>
<p id="point">Tone mark (CSS entity): </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

Numeric references for U+0341 work in all modern browsers. Rendering depends on font support for combining diacritical marks:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

U+0341 after different bases (glyph shape depends on font and orthography):

Vowels + mark á   é   í   ó   ú
Large (a + mark)
vs. U+0301 Compare á (tone) with á (combining acute). They are different code points; glyphs may look similar.
Monospace Order: base then &#x0341;
Isolation A combining mark without a base may show a dotted circle in some fonts.

🧠 How It Works

1

Hexadecimal Code

&#x0341; references Unicode 0341 in hex. Place it immediately after the base letter (for example a&#x0341;).

HTML markup
2

Decimal HTML Code

&#833; is decimal 833, equivalent to U+0341.

HTML markup
3

CSS Entity (Escape)

\0341 in a CSS string (for example content: "a\0341") emits the same combining sequence in generated content.

CSS stylesheet
=

Same visual result

With base a, all approaches yield the composed sequence . Class: combining mark (Mn). No standard named entity.

Use Cases

Where U+0341 is appropriate in web content and data:

🎵 Tone languages

Orthographies and linguistic data that encode high or rising tone with U+0341 instead of U+0301.

📝 Phonetics & IPA-style

Transcriptions where tone marks must be distinguished from stress acutes.

📚 Dictionaries

Headwords and pronunciation keys that follow a standard using this code point.

📄 Academic publishing

Linguistics and language documentation in HTML or EPUB-derived markup.

🌐 Internationalization

Pipelines that preserve NFC/NFD and exact code-point distinctions for search or collation.

🎨 Typography

Fonts and specimens that show the full combining mark inventory.

💻 Language apps

Tone drills and pickers that insert the mark after a typed base letter.

💡 Best Practices

Do

  • Keep the base letter immediately before U+0341 in the DOM
  • Document whether your project uses U+0341 vs U+0301 for tone vs stress
  • Use UTF-8 and test with the same fonts your readers will see
  • Prefer precomposed letters for common European text when that matches your locale rules
  • Use \0341 only inside CSS strings, not as raw HTML text

Don’t

  • Assume U+0341 and U+0301 are interchangeable in all orthographies
  • Emit the mark with no base character
  • Mix tone-mark and acute-accent code points at random in one corpus without a spec
  • Rely on CSS content for long passages of linguistic text
  • Forget line-breaking: keep base and mark from splitting across lines awkwardly

Key Takeaways

1

Two HTML numeric references encode U+0341 after a base letter

&#x0341; &#833;
2

In CSS strings, use \0341 after the base (e.g. "a\0341")

\0341
3

U+0341 is a combining mark (Mn) for tone, distinct from U+0301

4

No named HTML entity — use numeric references or CSS escapes

5

Match the code point your orthography or data standard specifies; do not guess

❓ Frequently Asked Questions

Use &#x0341; (hex) or &#833; (decimal) after the base letter, e.g. a&#x0341;. In CSS, content: "a\0341" is a common pattern. There is no standard named entity.
U+0341 (hex 0341, decimal 833). It is not the same character as U+0301 combining acute accent.
When your orthography, dictionary, or data standard explicitly requires the tone mark code point U+0341. For everyday French/Spanish text, precomposed letters or e + U+0301 are more common than U+0341.
HTML references go in markup; \0341 belongs in stylesheet strings. Same code point, different layer.
Combining marks in this range are almost always written with numeric character references.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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