HTML Entity for Grave Tone Mark (̀)

What You'll Learn
How to insert the combining Grave Tone Mark (̀, U+0340) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0340 (COMBINING GRAVE TONE MARK) in the Combining Diacritical Marks block (U+0300–U+036F).
Place it after a base letter to indicate tone in phonetic or tonal-language notation. Use ̀, ̀, or CSS \340. There is no named HTML entity. Do not confuse U+0340 with the combining Grave Accent (U+0300) used for letter quality (à, è) or the backtick (U+0060).
⚡ Quick Reference — Grave Tone Mark
U+0340Combining Diacritical Marks
̀Hexadecimal reference
̀Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0340
Hex code ̀
HTML code ̀
Named entity (none)
CSS code \340
Meaning Combining grave tone mark
Position Above base letter (tone)
Related U+0300 = combining grave accent (̀)Complete HTML Example
This example inserts the combining Grave Tone Mark (U+0340) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity. The mark combines above a preceding base letter:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\340";
}
</style>
</head>
<body>
<p>Grave Tone Mark using Hexadecimal: à è</p>
<p>Grave Tone Mark using Decimal: ò ù</p>
<p id="point">Grave Tone Mark using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The combining Grave Tone Mark (U+0340) is supported when fonts include Combining Diacritical Marks and tone-mark positioning:
👀 Live Preview
See the combining Grave Tone Mark (̀) with base letters, compared to the grave accent:
🧠 How It Works
Hexadecimal Code
̀ uses the Unicode hexadecimal value 0340 to insert the combining Grave Tone Mark. The x prefix indicates hexadecimal format.
Decimal HTML Code
̀ uses the decimal Unicode value 832 to insert the same combining character.
CSS Entity
\340 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Combining above the base
Place U+0340 after the base letter for tone notation. Contrast with U+0300 (grave accent for à). Next: Greater Than (>).
Use Cases
The combining Grave Tone Mark (U+0340) is commonly used in:
Phonetic romanization and linguistic content for languages that mark tone above letters.
Transcription and notation that require combining tone diacritics.
Language-learning apps and multilingual sites displaying tonal text correctly.
Generating or processing Unicode text that includes combining tone marks.
Font design and testing of above-base tone mark positioning.
HTML entity lists, Unicode charts, and linguistic symbol references.
💡 Best Practices
Do
- Place the combining mark after the base letter
- Use fonts with extended Latin / IPA support for reliable rendering
- Distinguish U+0340 (tone) from U+0300 (accent)
- Use precomposed letters when your locale standard prefers NFC forms
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Assume U+0340 replaces locale-specific tone marks (e.g. Vietnamese uses other code points)
- Confuse tone mark U+0340 with backtick U+0060
- Put the combining mark before the base letter
- Put CSS escape
\340in HTML text nodes - Expect a named HTML entity for U+0340
Key Takeaways
Two HTML numeric references plus CSS insert U+0340
̀ ̀For CSS stylesheets, use \340 in the content property
Unicode U+0340 — COMBINING GRAVE TONE MARK
Accent for à is U+0300, not U+0340
Next: Greater Than (>)
❓ Frequently Asked Questions
̀ (hex), ̀ (decimal), or \340 in CSS content. There is no named entity. Place it after the base letter; the mark appears above the character.U+0340 (COMBINING GRAVE TONE MARK). Combining Diacritical Marks block. Hex 0340, decimal 832. No named HTML entity.U+0340 is the combining grave tone mark. U+0300 is the combining grave accent (e.g. a + ̀ = à). Both attach above the base character; Unicode assigns different semantics and code points.̀ or ̀) go in markup after the base letter. The CSS escape \340 is used in stylesheets, typically in the content property of pseudo-elements.Explore More HTML Entities!
Discover 1500+ HTML character references — combining marks, punctuation, and more.
8 people found this page helpful
