HTML Entity for Left Arrowhead Below (͔)

What You'll Learn
How to insert the combining Left Arrowhead Below (U+0354) in HTML using hexadecimal, decimal, and CSS escape methods. This mark appears below a base letter and is used in phonetic notation, linguistic content, and technical notation to modify base characters (e.g. o͔, a͔).
It is U+0354 (COMBINING LEFT ARROWHEAD BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). Use ͔, ͔, or CSS \0354. There is no named HTML entity. Related: U+0355 (͕, right arrowhead below).
⚡ Quick Reference — Left Arrowhead Below
U+0354Combining Diacritical Marks
͔Hexadecimal reference
͔Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0354
Hex code ͔
HTML code ͔
Named entity (none)
CSS code \0354
Meaning Combining left arrowhead below
Position Below base letter
Example o͔
Related U+0355 = right arrowhead below (͕)Complete HTML Example
A simple example showing the Left Arrowhead Below (U+0354) 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: "\0354";
}
</style>
</head>
<body>
<p>Left Arrowhead Below using Hexadecimal: o͔ a͔</p>
<p>Left Arrowhead Below using HTML Code: o͔ e͔</p>
<p id="point">Left Arrowhead Below using CSS Entity: o</p>
</body>
</html>🌐 Browser Support
The Left Arrowhead Below (U+0354) renders when fonts support Combining Diacritical Marks with correct below-base positioning:
👀 Live Preview
See the Left Arrowhead Below (U+0354) combined with base letters:
🧠 How It Works
Hexadecimal Code
͔ uses the Unicode hexadecimal value 0354 to display the combining mark. Place it immediately after the base character.
Decimal HTML Code
͔ uses the decimal Unicode value 852 for the same combining character.
CSS Entity
\0354 is used in CSS stylesheets in the content property of pseudo-elements like ::after following a base character in markup.
Same visual result
U+0354 stacks below the preceding base character (e.g. o͔). Unicode U+0354 is in Combining Diacritical Marks. Next: Left Barb Down Right Barb Down Harpoon.
Use Cases
The Left Arrowhead Below (U+0354) is commonly used in:
IPA or phonetic transcription that uses combining left arrowhead below.
Documentation of tone, stress, or prosody in linguistic text.
Specifications or notation that use this combining character.
Language learning, phonetics, or academic content with diacritics.
Character sets, Unicode reference, or symbol lists.
Combining with base characters for custom glyphs or design.
💡 Best Practices
Do
- Place
͔or͔immediately after the base character (e.g.o͔) - Use fonts that support Combining Diacritical Marks (U+0354)
- Set
<meta charset="utf-8"> - Keep one numeric style (hex or decimal) per project
- Test combining mark stacking across browsers and fonts
- Use for phonetic or linguistic meaning, not decoration alone
Don’t
- Put the combining mark before the base character
- Expect a named HTML entity for U+0354
- Use CSS
\0354inside HTML text nodes without a base letter context - Assume all fonts render combining marks identically
- Confuse U+0354 with U+0355 (right arrowhead below)
Key Takeaways
Two HTML numeric references plus CSS for U+0354
͔ ͔For CSS, use \0354 in the content property after a base character
Unicode U+0354 — COMBINING LEFT ARROWHEAD BELOW
Combining Diacritical Marks (U+0300–U+036F) — no named entity
Previous: Left Arrow Vertical Stroke (⇷) Next: Left Barb Down Right Barb Down Harpoon
❓ Frequently Asked Questions
͔ (hex), ͔ (decimal), or \0354 in CSS content. There is no named entity. It is a combining character—place it after the base letter (e.g. o͔).U+0354 (COMBINING LEFT ARROWHEAD BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0354, decimal 852. Used as a combining mark in phonetic and linguistic notation, appearing below the base character.͔ or ͔) go in markup after the base character. The CSS escape \0354 is used in stylesheets, typically on ::after following a base letter. Both render the mark below the letter.͔) or decimal (͔) codes. That is standard for combining characters in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
