HTML Entity for Uppercase Y Hook (Ƴ)

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

What Is Uppercase Y Hook?

Uppercase Y hook (Ƴ) is the Unicode character at U+01B3 in Latin Extended-B. Official name: LATIN CAPITAL LETTER Y WITH HOOK — a capital Y with a hooked stem, used in some African orthographies and linguistics.

Remember
Character     Ƴ
Unicode       U+01B3
Hex entity    Ƴ
Decimal       Ƴ
CSS escape    \01B3
Named entity  (none)
Not the same  Y · Ÿ · ƴ

Prefer Ƴ or Ƴ in HTML markup. You can also type Ƴ in UTF-8. There is no named entity. For the lowercase pair, use U+01B4 (ƴ).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterƳHTML text (UTF-8)
Hex entityƳHTML markup (preferred)
Decimal entityƳHTML markup
CSS escape\01B3Stylesheet content
Named entity—Not defined in HTML5
Lowercase (related)ƴ (U+01B4)Numeric only

When to Use Which

SituationUse
Capital Y with hook (Ƴ)Ƴ or Ƴ
Lowercase y with hook (ƴ)ƴ (ƴ)
Plain capital YY (U+0059)
Capital Y with diaeresisŸ (U+0178)
Generated text via ::before / ::aftercontent: "\01B3"

Live Preview

Uppercase Y hook rendered alone and next to related letters.

Large glyph Ƴ
Notation /Ƴ/
Compared Ƴ  |  Y  |  ƴ
Hint Compare: Hook Ƴ | Plain Y | Lower ƴ | Diaeresis Ÿ
With entities Hex: Ƴ | Decimal: Ƴ

Complete HTML Example

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

Hex + Decimal + CSS + Typed

Four ways to produce Ƴ, plus a short comparison note.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase Y Hook (Ƴ)</title>
  <style>
    #point::after {
      content: "\01B3";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x01B3;</p>
  <p>Using HTML Code: &#435;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ƴ</p>
  <p>Not Y (plain capital Y)</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+01B3 → &#x01B3; in HTML. The browser turns it into Ƴ.

2. Decimal: same code point as 435 → &#435;. Same result as hex.

3. CSS: use \01B3 in content (not an HTML entity). #point::after appends that Ƴ after the paragraph text.

4. Typed / compare: paste Ƴ in UTF-8. Keep plain Y (U+0059) as a different letter.

5. No named entity: HTML5 does not define a name for U+01B3 — use numeric references or type the character.

Pitfalls & Tips

Common mistakes when working with U+01B3.

Named?

No named entity

HTML5 does not define a named entity for U+01B3. Use &#x01B3; or &#435;.

vs Y

Not plain capital Y

Keyboard Y is U+0059. Use U+01B3 only when you need the hooked form.

Pair

Lowercase is U+01B4

Small letter ƴ has no named entity either — use &#x01B4; or &#436;.

vs Ÿ

Not diaeresis Ÿ

Ÿ (U+0178, &Yuml;) has two dots. Ƴ has a hook on the stem.

CSS vs HTML

Do not mix escapes

\01B3 belongs in CSS strings. &#x01B3; / &#435; belong in HTML.

Fonts

Extended Latin coverage

Some UI fonts omit Latin Extended-B hook letters. Prefer a font with solid U+0180–U+024F coverage.

Browser Support

Uppercase Y hook (U+01B3) and its entity forms (&#x01B3;, &#435;, CSS \\01B3) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Uppercase Y Hook (&#x01B3;)

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 IE 9+
Yes
U+01B3 / entities Full support

Bottom line: Prefer &#x01B3; or &#435; in HTML. Use \\01B3 only inside CSS content. There is no named entity. Do not confuse with plain Y or Ÿ.

Key Takeaways

  • Unicode: uppercase Y hook is U+01B3 (decimal 435) — glyph Ƴ.
  • HTML: use &#x01B3; or &#435; — no named entity; typing Ƴ also works.
  • CSS: use \01B3 inside content for generated text.
  • Watch out: Ƴ ≠ plain Y ≠ ƴ ≠ Ÿ.

One line: U+01B3 → &#x01B3; / &#435; / CSS \01B3.

Frequently Asked Questions

Use &#x01B3; (hex), &#435; (decimal), type Ƴ directly in UTF-8, or the CSS escape \01B3 in content. There is no named HTML entity.
U+01B3 (LATIN CAPITAL LETTER Y WITH HOOK). Hex 01B3, decimal 435. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#435; or &#x01B3;.
No. Ƴ is U+01B3 (Y with hook). Plain Y is U+0059. Ÿ is U+0178 (&Yuml;, diaeresis).
Use it for orthographies and linguistics that need capital Y with a hook — not as a substitute for plain Y, Ÿ, Ý, or Ŷ.
HTML entities (&#435; or &#x01B3;) go in markup. The CSS escape \01B3 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uppercase Y hook (Ƴ) is Unicode U+01B3 (decimal 435) — LATIN CAPITAL LETTER Y WITH HOOK in Latin Extended-B. HTML5 has no named entity — use &#x01B3; or &#435;. Its lowercase pair is U+01B4 (ƴ). Used in some African orthographies and linguistics. Do not confuse it with plain Y (U+0059) or diaeresis Ÿ (&Yuml;).

Next: Uppercase Y Latin

Learn the HTML entity for Latin capital Y (U+028F).

Continue 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