HTML Entity for Lowercase Yogh (ȝ)

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

What Is the Lowercase Yogh Entity?

Lowercase yogh (ȝ) is the Latin Extended-B character at Unicode U+021D (LATIN SMALL LETTER YOGH). It is a historical letter used in Middle English and Scots for sounds later spelled with gh, y, or z. You can paste ȝ in a UTF-8 file, or use a numeric character reference when encoding must be explicit.

Remember
Character     ȝ
Unicode       U+021D
Hex entity    ȝ
Decimal       ȝ
CSS escape    \021D
Named entity  (none)
Capital       Ȝ (U+021C)

All of these produce the same glyph: ȝ. Prefer typing or pasting ȝ in UTF-8 pages; use entities for CSS content, generated markup, or when encoding must be explicit.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterȝHTML text (UTF-8 default)
Hex entityȝHTML markup
Decimal entityȝHTML markup
CSS escape\021DStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Middle English / Scots text (UTF-8)Type or paste ȝ
Need an entity in HTML sourceȝ or ȝ
Generated text via ::before / ::aftercontent: "\021D"
Looking for a named entityDoes not exist — use numeric form
Modern spelling insteadOften gh, y, or z — keep yogh for historical editions

Live Preview

Lowercase yogh in Middle English-style and comparison contexts.

Sample text ȝif, ⇞, miȝt
Large glyph ȝ
Case pair Ȝ (U+021C) / ȝ (U+021D)
With entities Hex: ȝ | Decimal: ȝ
Not the same y · z · ʒ (ezh) · g

Complete HTML Example

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

Hex + Decimal + CSS + Typed

All four ways to produce ȝ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Yogh (ȝ) in HTML</title>
  <style>
    #point::after {
      content: "\021D";
    }
  </style>
</head>
<body>
  <p>Yogh using Hex Code: &#x021D;</p>
  <p>Yogh using HTML Code: &#541;</p>
  <p id="point">Yogh using CSS Entity: </p>
  <p>Typed / pasted: ȝ</p>
  <p>Sample: ȝif, miȝt</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+021D → &#x021D; in HTML. The browser turns it into ȝ.

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

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

4. Typed ȝ: fine in UTF-8 documents. All four encoding lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with the yogh entity.

Named?

No named entity

HTML5 does not define a named entity for ȝ. Use numeric forms.

CSS vs HTML

Do not mix escapes

\021D belongs in CSS. &#x021D; / &#541; belong in HTML.

Look-alikes

Not ezh or z

IPA ezh ʒ is U+0292. Plain z is U+007A. Yogh ȝ is U+021D — keep them distinct in scholarly work.

History

Often modernized

Modern editions may replace yogh with gh, y, or z. Keep ȝ when you need the historical letter itself.

Fonts

Glyph coverage

Some fonts omit Latin Extended-B. If ȝ looks like a box, switch to a font that includes it.

UTF-8

Declare charset

If you paste ȝ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Lowercase yogh (U+021D) and its numeric entity forms (&#x021D;, &#541;, CSS \\021D) are supported in all mainstream browsers. Glyph availability depends on the font.

✓ Universal support

Yogh (&#x021D;)

Paste ȝ, or encode with hex, decimal, or CSS escape — same code point everywhere.

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

Bottom line: Use a pasted ȝ in UTF-8 text when you can. Prefer &#x021D; or &#541; in HTML when encoding must be explicit, and \\021D only inside CSS content.

Key Takeaways

  • Unicode: yogh is U+021D (decimal 541), Latin Extended-B.
  • HTML: use &#x021D; or &#541; when you need an entity.
  • CSS: use \021D inside content for generated text.
  • Watch out: not the same as plain y, z, or IPA ezh ʒ.

One line: U+021D → paste ȝ, or encode as &#x021D; / &#541; / CSS \021D.

Frequently Asked Questions

Use &#x021D; (hex), &#541; (decimal), or the CSS escape \021D in the content property. All render ȝ. There is no named HTML entity for this character.
U+021D (LATIN SMALL LETTER YOGH). Hex 021D, decimal 541. It belongs to Latin Extended-B. The capital form is U+021C (Ȝ).
No. HTML5 does not define a named entity for yogh. Use numeric references &#541; or &#x021D; when you need an entity form.
Use it for Middle English or Scots editions, medieval manuscript transcription, historical linguistics pages, CSS-generated content, or anywhere you must encode ȝ explicitly. Prefer typing or pasting ȝ directly when your file is UTF-8.
HTML entities (&#541; or &#x021D;) go in markup. The CSS escape \021D is used in stylesheets (usually in the content property of ::before/::after). Both render ȝ.
Plain y and z are modern Latin letters. IPA ezh ʒ (U+0292) looks similar but is a different character. Yogh ȝ is the historical Middle English/Scots letter at U+021D.

Did you know?

Lowercase yogh (ȝ) is Unicode U+021D (decimal 541) in Latin Extended-B. Official name: LATIN SMALL LETTER YOGH. HTML5 has no named entity — use &#x021D; or &#541;. Used in Middle English and Scots for sounds later spelled gh, y, or z (e.g. ȝif, miȝt). Capital is Ȝ (U+021C).

Next: Lowercase Z

Learn the HTML entity for the letter z — next in this sequence.

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