HTML Entity for Fn Feng Digraph (ʩ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+02A9

What You'll Learn

How to display the Fn Feng digraph (ʩ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+02A9 (LATIN SMALL LETTER FN FENG) in the IPA Extensions block (U+0250–U+02AF)—used in phonetic and linguistic notation, including specialized IPA and Africanist transcription contexts.

Render it with ʩ, ʩ, or CSS escape \02A9. There is no named HTML entity. Use an IPA-capable font (e.g. Doulos SIL, Charis SIL). Compare nearby IPA glyphs such as ʧ (hwair) or ʣ (dz digraph) when choosing the correct symbol.

⚡ Quick Reference — Fn Feng Digraph

Unicode U+02A9

IPA Extensions block

Hex Code ʩ

Hexadecimal reference

HTML Code ʩ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+02A9
Hex code       ʩ
HTML code      ʩ
Named entity   (none)
CSS code       \02A9
Official name  LATIN SMALL LETTER FN FENG
Related        U+02A7 = Hwair (ʧ); U+02A3 = Dz digraph (ʣ)
1

Complete HTML Example

This example demonstrates the Fn Feng digraph (ʩ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\02A9";
  }
 </style>
</head>
<body>
<p>Fn Feng Digraph using Hexadecimal: &#x02A9;</p>
<p>Fn Feng Digraph using HTML Code: &#681;</p>
<p id="point">Fn Feng Digraph using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+02A9 is supported in modern browsers when rendered with a font that includes IPA Extensions (e.g. system UI, Doulos SIL, Charis SIL):

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

👀 Live Preview

See the Fn Feng digraph (ʩ) in phonetic and linguistic contexts:

Large glyph ʩ
Phonetic line /ʩa/ transcription example
vs Dz digraph ʩ fn feng   ʣ dz
Dictionary word /wəʩd/
Numeric refs &#x02A9; &#681; \02A9

🧠 How It Works

1

Hexadecimal Code

&#x02A9; uses the Unicode hexadecimal value 02A9 to display the Fn Feng digraph. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#681; uses the decimal Unicode value 681 to display the same character.

HTML markup
3

CSS Entity

\02A9 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: ʩ. Unicode U+02A9 is in IPA Extensions. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Fn Feng digraph (ʩ) is commonly used in:

🔤 Phonetic transcription

Display IPA and specialized phonetic symbols in pronunciation guides and linguistic content.

📚 Dictionaries & glossaries

Dictionary entries, glossaries, and language reference materials with phonetic notation.

🏫 Language learning

Pronunciation guides, language apps, and educational content that use IPA notation.

📄 Academic papers

Phonetics, phonology, and linguistics research requiring specialized character support.

✏️ Typography

Testing and displaying extended Latin and IPA characters in font specimens.

📑 Documentation

HTML entity references, Unicode charts, and character set documentation.

💡 Best Practices

Do

  • Use &#x02A9; or &#681; consistently in markup
  • Use fonts that support IPA Extensions (e.g. Doulos SIL, Charis SIL, system UI)
  • Add aria-label="fn feng digraph" when the character carries phonetic meaning
  • Provide a pronunciation key or gloss alongside IPA symbols
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+02A9
  • Confuse ʩ with nearby IPA letters (e.g. ʧ hwair, ʣ dz)
  • Put CSS escape \02A9 in HTML text nodes
  • Rely on the symbol alone without phonetic context for learners
  • Assume all fonts render IPA glyphs identically

Key Takeaways

1

Two HTML numeric references plus CSS render ʩ

&#x02A9; &#681;
2

For CSS stylesheets, use the escape in the content property

\02A9
3

Unicode U+02A9 — LATIN SMALL LETTER FN FENG

4

IPA Extensions block (U+0250–U+02AF)

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x02A9; (hex), &#681; (decimal), or \02A9 in CSS content. There is no named entity. All produce ʩ.
U+02A9 (LATIN SMALL LETTER FN FENG). IPA Extensions block (U+0250–U+02AF). Hex 02A9, decimal 681. Used in phonetic and linguistic notation.
In phonetic transcription, linguistic and dictionary content, IPA notation, language learning resources, academic papers on phonetics, and typography for specialized characters.
HTML references (&#681; or &#x02A9;) go in markup. The CSS escape \02A9 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover a subset of common characters. IPA Extensions characters like U+02A9 have no named entity—use &#x02A9; or &#681; in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA symbols, phonetics, math operators, 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