HTML Entity for Hu (ƕ)

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

What You'll Learn

How to display the Hu character (ƕ)—the Latin small letter hv—in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0195 (LATIN SMALL LETTER HV) in the Latin Extended-B block (U+0180–U+024F).

Use ƕ, ƕ, or CSS \0195. There is no named HTML entity—numeric codes or CSS escapes are required. Common in linguistic, Gothic transliteration, and special typography.

⚡ Quick Reference — Hu

Unicode U+0195

Latin Extended-B

Hex Code ƕ

Hexadecimal reference

HTML Code ƕ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0195
Hex code       ƕ
HTML code      ƕ
Named entity   (none)
CSS code       \0195
Meaning        Latin small letter hv (ligature)
CSS note       \0195 or \00195 in content property
1

Complete HTML Example

This example demonstrates the Hu (ƕ) 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: "\0195";
  }
 </style>
</head>
<body>
<p>Hu using Hexadecimal: &#x0195;</p>
<p>Hu using Decimal: &#405;</p>
<p id="point">Hu using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Hu (ƕ) renders when fonts support Latin Extended-B (U+0180–U+024F):

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

👀 Live Preview

Hu character (ƕ) in linguistic and transliteration content:

Glyph (hex) ƕ
Same via decimal ƕ
In word ƕwaƕrs
Numeric refs &#x0195; &#405; \0195

🧠 How It Works

1

Hexadecimal Code

&#x0195; uses Unicode hexadecimal 0195 to display the Hu character (ƕ) in HTML markup.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\0195 is used in CSS, typically in the content property of pseudo-elements such as ::after.

CSS stylesheet
=

Same visual result

All three methods produce ƕ. Unicode U+0195 is in Latin Extended-B. Next: Hyphen.

Use Cases

The Hu (U+0195) is commonly used in:

🔤 Linguistics

Phonetic notation, historical linguistics, and academic papers using the hv ligature.

📜 Gothic

Transliteration of Gothic or medieval Latin texts that use this character.

📚 Reference

Documentation, font samples, and Unicode character reference pages.

📖 Dictionaries

Dictionary entries or word lists that include words with ƕ.

🎨 Typography

Special typography or branding that uses extended Latin characters.

🌐 i18n

Sites supporting transliteration systems that use Latin Extended-B.

💡 Best Practices

Do

  • Use &#x0195; or &#405; in HTML (no named entity)
  • Choose fonts with Latin Extended-B support (Gentium Plus, Noto Sans)
  • Declare UTF-8 with <meta charset="utf-8">
  • Use ƕ where linguistically required; “hv” may suffice otherwise
  • Provide context so screen readers and users understand the character
  • Use the same hex or decimal method consistently across a page
  • Test rendering on mobile and desktop browsers

Don’t

  • Expect a named HTML entity for U+0195
  • Use CSS \0195 in HTML text nodes
  • Rely on the symbol alone without a text label for screen readers
  • Assume every system font includes U+0195
  • Skip browser testing for symbol-heavy pages

Key Takeaways

1

Two HTML numeric references plus CSS insert U+0195

&#x0195; &#405;
2

For CSS, use \0195 in the content property

3

Unicode U+0195 — LATIN SMALL LETTER HV

4

No named entity—use hex or decimal

5

Next: Hyphen

❓ Frequently Asked Questions

Use &#x0195; (hex), &#405; (decimal), or \0195 in CSS content. There is no named entity. All three methods render the same glyph (ƕ).
U+0195 (LATIN SMALL LETTER HV) in the Latin Extended-B block (U+0180–U+024F). Hex 0195, decimal 405. Latin small letter hv; used in linguistic and transliteration contexts.
For linguistic and academic content, Gothic or medieval transliteration, phonetic notation, and any content that requires the Latin small letter hv.
HTML references (&#405; or &#x0195;) go directly in markup. The CSS escape \0195 is used in stylesheets, typically in the content property of pseudo-elements.
No. Use hexadecimal &#x0195;, decimal &#405;, or CSS \0195 in the content property of pseudo-elements.
ƕ (U+0195) is a single character—the Latin small letter hv. hv are two separate letters. In Gothic transliteration or phonetic notation, use the entity when the single glyph is required.
Ensure UTF-8 encoding (<meta charset="utf-8">) and a font that supports Latin Extended-B. Try Gentium Plus, Noto Sans, or Arial Unicode MS if the glyph is missing.

Explore More HTML Entities!

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