HTML Entity for Right Arrowhead Above (͐)

What You'll Learn
How to insert the combining Right Arrowhead Above (U+0350) in HTML using hexadecimal, decimal, and CSS escape methods. This mark appears above a base letter and is used in typography, linguistic content, and phonetic notation to modify base characters (e.g. o͐, a͐).
It is U+0350 (COMBINING RIGHT ARROWHEAD ABOVE) in the Combining Diacritical Marks block (U+0300–U+036F). Use ͐, ͐, or CSS \0350. There is no named HTML entity. Related: U+0355 (͕, right arrowhead below), U+0354 (͔, left arrowhead below).
⚡ Quick Reference — Right Arrowhead Above
U+0350Combining Diacritical Marks
͐Hexadecimal reference
͐Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0350
Hex code ͐
HTML code ͐
Named entity (none)
CSS code \0350
Meaning Combining right arrowhead above
Position Above base letter
Example o͐
Related U+0355 = right arrowhead below (͕)
U+0354 = left arrowhead below (͔)
Block Combining Diacritical Marks (U+0300–U+036F)Complete HTML Example
A simple example showing the Right Arrowhead Above (U+0350) with base letters using hexadecimal code, decimal HTML code, and a CSS content escape. Always place the combining mark after the base character:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\0350";
}
</style>
</head>
<body>
<p>Hex: o͐ a͐</p>
<p>Decimal: o͐ e͐</p>
<p id="point">CSS: o</p>
</body>
</html>🌐 Browser Support
U+0350 renders when fonts support Combining Diacritical Marks with correct above-base positioning:
👀 Live Preview
See the Right Arrowhead Above (U+0350) combined with base letters:
🧠 How It Works
Hexadecimal Code
͐ uses the Unicode hexadecimal value 0350. Place it immediately after the base character.
Decimal HTML Code
͐ uses the decimal Unicode value 848 for the same combining character.
CSS Entity
\0350 is used in CSS stylesheets in the content property of pseudo-elements like ::after following a base character in markup.
Same visual result
U+0350 stacks above the preceding base character (e.g. o͐). Unicode U+0350 in Combining Diacritical Marks. Previous: Right Arrow With Dotted Stem (⤑). Next: Right Arrowhead Below (͕).
Use Cases
The Right Arrowhead Above (U+0350) is commonly used in:
Typographic projects and text formatting with combining marks above characters.
Academic papers and research requiring precise linguistic notation.
Transcription systems and pronunciation guides with combining diacritics.
Scholarly articles and research with specialized diacritical marks.
Character encoding guides and technical reference materials.
Documents needing precise typographic control with combining marks.
💡 Best Practices
Do
- Place
͐or͐immediately after the base character (e.g.o͐) - Use fonts that support Combining Diacritical Marks (U+0350)
- Set
<meta charset="utf-8"> - Keep one numeric style (hex or decimal) per project
- Test combining mark stacking across browsers and fonts
- Use for linguistic or typographic meaning, not decoration alone
Don’t
- Put the combining mark before the base character
- Expect a named HTML entity for U+0350
- Use padded Unicode notation like U+00350—the correct value is
U+0350 - Use CSS
\0350inside HTML text nodes without a base letter context - Use padded CSS like
\00350—prefer\0350 - Confuse U+0350 with U+0355 (right arrowhead below)
Key Takeaways
Three ways to render U+0350 in HTML and CSS
͐ ͐For CSS, use \0350 in the content property after a base character
Unicode U+0350 — COMBINING RIGHT ARROWHEAD ABOVE (͐)
Combining Diacritical Marks (U+0300–U+036F) — no named entity
Previous: Right Arrow With Dotted Stem (⤑) Next: Right Arrowhead Below (͕)
❓ Frequently Asked Questions
͐ (hex), ͐ (decimal), or \0350 in CSS content. Place the mark immediately after the base character (e.g. o͐). There is no named HTML entity.U+0350 (COMBINING RIGHT ARROWHEAD ABOVE). Combining Diacritical Marks block (U+0300–U+036F). Hex 0350, decimal 848.͐, ͐) go in markup after the base character. The CSS escape \0350 is used in stylesheets on ::after or similar. Both render the mark above the letter.͐) or decimal (͐) references, which is standard for diacritical characters.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
