HTML Entity for Uppercase Hu Hwair (Ƕ)

What You'll Learn
How to display the uppercase hu hwair (Ƕ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+01F6 (LATIN CAPITAL LETTER HWAIR)—a historical letter from the Gothic alphabet used in philology, Old English studies, and linguistic documentation. It sits in the Latin Extended-B block.
Render it with Ƕ, Ƕ, or CSS escape \01F6. There is no named HTML entity for this character. The lowercase pair is ƕ (U+0195, LATIN SMALL LETTER HWAIR).
⚡ Quick Reference — Uppercase Hu Hwair Entity
U+01F6Latin Extended-B
ǶHexadecimal reference
ǶDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01F6
Hex code Ƕ
HTML code Ƕ
Named entity (none)
CSS code \01F6
Meaning Latin capital letter hwair
Related U+0195 = ƕ (lowercase hwair)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase hu hwair (Ƕ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01F6";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƕ</p>
<p>Symbol (decimal): Ƕ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase hu hwair (Ƕ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:
👀 Live Preview
See the uppercase hu hwair (Ƕ) in historical and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ƕ uses the Unicode hexadecimal value 01F6 to display the uppercase hu hwair. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƕ uses the decimal Unicode value 502 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01F6 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ƕ. Unicode U+01F6 sits in Latin Extended-B. There is no named HTML entity. Do not confuse with plain H (U+0048) or Ħ (H stroke).
Use Cases
The uppercase hu hwair (Ƕ) is commonly used in:
Historical documents and scholarly editions requiring the hwair character.
Gothic alphabet references, educational materials, and linguistic documentation.
Philology, historical linguistics, and academic papers on Germanic languages.
Research publications discussing Gothic script or related historical alphabets.
University courses and online resources teaching historical alphabets.
Linguistic reference works and etymology resources for historical languages.
Character set demonstrations for Latin Extended-B coverage.
💡 Best Practices
Do
- Use
ǶorǶin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ƕ directly in UTF-8 source
- Use fonts that support Latin Extended-B (U+0180–U+024F), e.g. Gentium or Charis SIL
- Distinguish Ƕ (hwair) from plain
H(U+0048) and Ħ (H stroke) - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for Ƕ
- Substitute plain
Hwhen Ƕ is required in historical text - Put CSS escape
\01F6in HTML text nodes - Use padded Unicode notation like U+001F6—the correct value is
U+01F6 - Use
\001F6in CSS—the correct escape is\01F6
Key Takeaways
Three references render Ƕ (no named entity)
Ƕ ǶFor CSS stylesheets, use the escape in the content property
\01F6Unicode U+01F6 — LATIN CAPITAL LETTER HWAIR
Gothic alphabet; pair with lowercase hwair (U+0195, ƕ)
Previous: Uppercase H Stroke (Ħ) Next: Uppercase I
❓ Frequently Asked Questions
Ƕ (hex), Ƕ (decimal), or \01F6 in CSS content. There is no named HTML entity for this character.U+01F6 (LATIN CAPITAL LETTER HWAIR). Latin Extended-B block. Hex 01F6, decimal 502. Used in Gothic and historical linguistic contexts.Ƕ or Ƕ) is used in HTML content. The CSS entity (\01F6) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ƕ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — historical letters, extended Latin, and more.
8 people found this page helpful
