HTML Entity for Uppercase Yogh (Ȝ)

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

What Is Uppercase Yogh?

Uppercase yogh (Ȝ) is the Unicode character at U+021C in Latin Extended-B. Official name: LATIN CAPITAL LETTER YOGH — the capital form of the historical letter yogh, used in Middle English and Scots for sounds later written as gh, y, or z.

Remember
Character     Ȝ
Unicode       U+021C
Hex entity    Ȝ
Decimal       Ȝ
CSS escape    \021C
Named entity  (none)
Not the same  Z · Ʒ · ȝ

Prefer Ȝ or Ȝ in HTML markup. You can also type Ȝ in UTF-8. There is no named entity. For the lowercase letter, use U+021D (ȝ).

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\021CStylesheet content
Named entity—Not defined in HTML5
Lowercase (related)ȝ (U+021D)Numeric only

When to Use Which

SituationUse
Capital yogh (Ȝ)Ȝ or Ȝ
Lowercase yogh (ȝ)ȝ (ȝ)
Capital ezh (Ʒ)Ʒ (U+01B7)
Modern capital ZZ (U+005A)
Generated text via ::before / ::aftercontent: "\021C"

Live Preview

Uppercase yogh rendered alone and next to related letters.

Large glyph Ȝ
Notation ȜIF
Compared Ȝ  |  Z  |  Ʒ  |  ȝ
Hint Compare: Yogh Ȝ | Modern Z | Ezh Ʒ | Lower ȝ
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 Middle English sample.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase Yogh (Ȝ)</title>
  <style>
    #point::after {
      content: "\021C";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x021C;</p>
  <p>Using HTML Code: &#540;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ȝ</p>
  <p lang="enm">Sample: ȜIF (not ZIF)</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+021C → &#x021C; in HTML. The browser turns it into Ȝ.

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

3. CSS: use \021C in content (not an HTML entity). #point::after appends that Ȝ after the paragraph text.

4. Typed / sample: paste Ȝ in UTF-8, or mark historical text with lang="enm" (Middle English).

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

Pitfalls & Tips

Common mistakes when working with U+021C.

Named?

No named entity

HTML5 does not define a named entity for U+021C. Use &#x021C; or &#540;.

vs Z

Not plain capital Z

Keyboard Z is U+005A. Use U+021C only for historical yogh, not modern Z.

vs Ʒ

Yogh ≠ ezh

Ʒ (U+01B7) is capital ezh, used in phonetics. Ȝ is Middle English/Scots yogh. Do not swap them.

Pair

Lowercase is U+021D

Small letter ȝ has no named entity either — use &#x021D; or &#541;.

CSS vs HTML

Do not mix escapes

\021C belongs in CSS strings. &#x021C; / &#540; belong in HTML.

Fonts

Extended Latin coverage

Some UI fonts omit yogh. Prefer a font with solid Latin Extended-B coverage (for example Junicode or Charis SIL).

Browser Support

Uppercase yogh (U+021C) and its entity forms (&#x021C;, &#540;, CSS \\021C) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Uppercase Yogh (&#x021C;)

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+021C / entities Full support

Bottom line: Prefer &#x021C; or &#540; in HTML. Use \\021C only inside CSS content. There is no named entity. Do not confuse with plain Z or Ʒ.

Key Takeaways

  • Unicode: uppercase yogh is U+021C (decimal 540) — glyph Ȝ.
  • HTML: use &#x021C; or &#540; — no named entity; typing Ȝ also works.
  • CSS: use \021C inside content for generated text.
  • Watch out: Ȝ ≠ plain Z ≠ Ʒ (ezh) ≠ ȝ.

One line: U+021C → &#x021C; / &#540; / CSS \021C.

Frequently Asked Questions

Use &#x021C; (hex), &#540; (decimal), type Ȝ directly in UTF-8, or the CSS escape \021C in content. There is no named HTML entity.
U+021C (LATIN CAPITAL LETTER YOGH). Hex 021C, decimal 540. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#540; or &#x021C;.
No. Ȝ is U+021C (capital yogh). Plain Z is U+005A. Ʒ is U+01B7 (capital ezh). They look similar but are different letters.
Use it for Middle English, Scots, and historical transcription that needs capital yogh — not as a substitute for modern Z, Y, or GH digraphs.
HTML entities (&#540; or &#x021C;) go in markup. The CSS escape \021C goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uppercase yogh (Ȝ) is Unicode U+021C (decimal 540) — LATIN CAPITAL LETTER YOGH in Latin Extended-B. HTML5 has no named entity — use &#x021C; or &#540;. Its lowercase pair is U+021D (ȝ). Used in Middle English and Scots for sounds later spelled gh, y, or z. Do not confuse it with plain Z or ezh Ʒ (U+01B7).

Next: Uppercase Z

Learn the HTML entity for uppercase Z (U+005A).

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