HTML Entity for Hu (ƕ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+0195

What Is Hu?

Hu (ƕ) is the Unicode character at U+0195 in Latin Extended-B. Official name: LATIN SMALL LETTER HV. It is a single letter (often called hwair in Gothic studies), not the two letters h + v.

Remember
Character     ƕ
Unicode       U+0195
Hex entity    ƕ
Decimal       ƕ
CSS escape    \0195
Named entity  (none)
Meaning       Latin small letter hv (hwair)
Capital form  Ƕ (U+01F6)
Not the same  h + v (two letters)

Prefer ƕ or ƕ in HTML (no named form). You can also type ƕ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entityƕHTML markup (preferred)
Decimal entityƕHTML markup
Direct characterƕHTML text (UTF-8)
CSS escape\0195Stylesheet content
Capital formǶ (Ƕ)Title case / capitals

When to Use Which

SituationUse
Gothic transliteration / linguistics (lowercase)ƕ → ƕ
Same letter, uppercaseUppercase Hu Hwair — Ƕ (Ƕ)
Ordinary English letters h and vType h and v separately — not U+0195
Other Latin Extended / special lettersOE, Dental click
Generated text via ::before / ::aftercontent: "\0195"

Live Preview

Letter alone, enlarged, in a sample word, and next to its capital form.

Glyph ƕ
Large glyph ƕ
Sample ƕaito
Compared ƕ   Ƕ   hv
With entities Hex: ƕ | Decimal: ƕ | Capital: Ƕ

Complete HTML Example

One page that shows Hu with hex, decimal, CSS escape, a typed character, and the capital form. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed + Capital

Ways to display ƕ in HTML and CSS, plus capital Ƕ.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Hu (U+0195) in HTML</title>
  <style>
    #point::after {
      content: "\0195";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x0195;</p>
  <p>Built with Decimal: &#405;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ƕ</p>
  <p>Sample: &#x0195;aito</p>
  <p>Capital (U+01F6): &#x01F6;</p>
  <p>Not the same: hv</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x0195; inserts code point U+0195 → ƕ.

2. Decimal: same code point as 405 → &#405;. Same visual as hex.

3. CSS: use \0195 in content (not an HTML entity). #point::after appends ƕ.

4. Typed / capital: paste ƕ in a UTF-8 document. For uppercase, use &#x01F6; (Ƕ) — a different code point from typing hv.

Pitfalls & Tips

Common mistakes when working with Hu.

Name

No named entity

There is no HTML5 named entity for U+0195. Use &#x0195; or &#405;. Do not invent &hu;.

hv

One letter, not two

ƕ is a single character. Typing h then v looks similar in some fonts but is two code points and will not match searches for U+0195.

Case

Capital is a different code

Uppercase form is U+01F6 (Ƕ), not a simple CSS text-transform guarantee in every font. Prefer &#x01F6; when you need the capital glyph.

Font

Font coverage

Some fonts omit Latin Extended-B. If ƕ is missing, use a font with U+0195 coverage or a fallback note in plain text.

CSS vs HTML

Do not mix escapes

\0195 belongs in CSS strings. &#x0195; / &#405; belong in HTML.

a11y

Announce rare letters

Screen readers may not name ƕ clearly. For critical UI text, add a short aria-label or surrounding explanation.

Semicolon

End references

Always finish entities with ; — write &#x0195;, not &#x0195.

Browser Support

Hu (U+0195) and its entity forms (&#x0195;, &#405;, CSS \\0195) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Hu (&#x0195;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0195 Full support

Bottom line: Prefer &#x0195; in HTML (no named form). Use &#405; when decimal form is required, and \\0195 only inside CSS content. Use &#x01F6; for the capital glyph.

Key Takeaways

  • Unicode: Hu is U+0195 (decimal 405) — glyph ƕ.
  • HTML: no named entity — use &#x0195; / &#405; / type ƕ.
  • CSS: use \0195 inside content for generated text.
  • Meaning: ƕ ≠ hv — capital is Ƕ (U+01F6).

One line: U+0195 → &#x0195; / &#405; / CSS \0195 (no named form).

Frequently Asked Questions

Use &#x0195; (hex), &#405; (decimal), type ƕ directly in UTF-8, or the CSS escape \0195 in content. There is no named HTML entity for U+0195.
U+0195 (LATIN SMALL LETTER HV). Hex 0195, decimal 405. It belongs to the Latin Extended-B block (U+0180–U+024F).
No. HTML5 does not define a named entity for this letter. Prefer &#x0195; or &#405;.
Use it for Gothic transliteration, historical linguistics, and academic text that needs the hv ligature letter ƕ. For titles, pair with the capital Ƕ (U+01F6) when case matters.
HTML numeric entities (&#405; or &#x0195;) go in markup. The CSS escape \0195 goes in stylesheet strings (usually content on ::before/::after).
No. U+0195 (ƕ) is one lowercase letter. U+01F6 (Ƕ) is its capital counterpart. Typing h then v is two separate characters, not the same as ƕ.

Did you know?

Hu is Unicode U+0195 (decimal 405) — glyph ƕ in Latin Extended-B (official name LATIN SMALL LETTER HV). There is no HTML5 named entity; use &#x0195; or &#405;. It is used in Gothic transliteration and linguistics. The capital form is Ƕ (U+01F6, LATIN CAPITAL LETTER HWAIR).

Next: Hyphen

Learn the HTML entity for Hyphen (U+2010).

Hyphen tutorial →

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