HTML Entity for Hook Above (ả)

Intermediate
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0309

What You'll Learn

How to insert the combining Hook Above (U+0309) in HTML using hexadecimal, decimal, and CSS escape methods. This mark is U+0309 (COMBINING HOOK ABOVE) in the Combining Diacritical Marks block (U+0300–U+036F). It appears above a base character when placed after it in markup—common in Vietnamese (e.g. ả, ỏ, ủ) and other scripts.

Place it after the base letter (e.g. ả for a with hook above). Use ̉, ̉, or CSS \0309. There is no named HTML entity—numeric codes or CSS escapes are required for this combining character.

⚡ Quick Reference — Hook Above

Unicode U+0309

Combining Diacritical Marks

Hex Code ̉

Hexadecimal reference

HTML Code ̉

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0309
Hex code       ̉
HTML code      ̉
Named entity   (none)
CSS code       \0309
Meaning        Hook above (combining diacritic)
Position       Above base letter
Example        ả (a + mark)
1

Complete HTML Example

This example shows the Hook Above (U+0309) with the letter a using hexadecimal code, decimal HTML code, and a CSS content escape. Always place the combining mark after the base letter:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0309";
  }
 </style>
</head>
<body>
<p>Hook Above using Hexadecimal: a&#x0309; o&#x0309;</p>
<p>Hook Above using Decimal: a&#777; o&#777;</p>
<p id="point">Hook Above using CSS Entity: a</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Hook Above (U+0309) renders when fonts support Combining Diacritical Marks stacking:

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

👀 Live Preview

Hook Above (U+0309) on letters—place the mark after the base character (common in Vietnamese):

a + U+0309 (hex)
o + U+0309 (decimal)
Vietnamese context ả (e.g. tone marks on vowels)
Mark alone ̉
Base + mark order ả   (not ̉a)
Numeric refs &#x0309; &#777; \0309

🧠 How It Works

1

Hexadecimal Code

&#x0309; uses Unicode hexadecimal 0309. Place it after the base letter (e.g. a&#x0309;) so the hook above mark stacks correctly.

HTML markup
2

Decimal HTML Code

&#777; uses decimal Unicode value 777 for the same combining character.

HTML markup
3

CSS Entity

\0309 is used in CSS, typically in the content property of ::after on an element that already contains the base letter.

CSS stylesheet
=

Combining above the base

U+0309 is a single combining code point. Order in HTML: base letter, then combining mark. Next: Horizontal Bar.

Use Cases

The Hook Above (U+0309) is commonly used in:

🇮🇳 Vietnamese

Correct Vietnamese diacritics (e.g. ả, ỏ, ủ) in names, content, and localization.

🔤 Linguistics

Phonetic transcription and linguistic notation where the hook above is required.

📖 Transliteration

Romanization and transliteration systems that use the hook above on letters.

🌐 i18n

Websites and apps that support Vietnamese or related scripts.

📚 Language learning

Materials and dictionaries for Vietnamese or related languages.

📋 Entity reference

HTML entity lists and developer documentation for combining characters.

💡 Best Practices

Do

  • Place U+0309 after the base letter in markup (e.g. a&#x0309;)
  • Use fonts with Vietnamese and Combining Diacritical Marks support
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep base + combining order correct for screen readers
  • Test diacritic rendering on mobile and desktop browsers

Don’t

  • Put the combining mark before the base letter
  • Expect a named HTML entity for U+0309
  • Use CSS \0309 in HTML text nodes
  • Confuse with Homothetic Above (U+034B) or operator Homothetic (U+223B)
  • Assume every font positions combining marks identically

Key Takeaways

1

Two HTML numeric references plus CSS insert U+0309

&#x0309; &#777;
2

For CSS, use \0309 in content after the base letter in the element

3

Unicode U+0309 — COMBINING HOOK ABOVE

4

Example sequence: a&#x0309; (a with mark)

❓ Frequently Asked Questions

Use &#x0309; (hex), &#777; (decimal), or \0309 in CSS content. There is no named entity. Place the code after a base character (e.g. a&#x0309;) so the mark appears above it.
U+0309 (COMBINING HOOK ABOVE). Combining Diacritical Marks block (U+0300–U+036F). Hex 0309, decimal 777. A combining character placed above a base letter.
In Vietnamese text and transliteration, linguistic and phonetic notation, language learning, internationalization (i18n), and anywhere you need this combining diacritical mark above a letter.
HTML references (&#777; or &#x0309;) go in markup after the base letter. The CSS escape \0309 is used in stylesheets, typically on ::after when the base letter is already in the element.
Named entities cover common characters; combining diacritics in the Combining Diacritical Marks block use numeric hex or decimal codes or CSS escapes. That is standard for marks like U+0309.

Explore More HTML Entities!

Discover 1500+ HTML character references — combining marks, math symbols, 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