HTML Entity for Uppercase Wynn (Ƿ)

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

What Is Uppercase Wynn?

Uppercase wynn (Ƿ) is the Unicode character at U+01F7 in Latin Extended-B. Official name: LATIN CAPITAL LETTER WYNN — the capital form of the historical letter wynn (also called wen), used in Old English and Middle English for the /w/ sound.

Remember
Character     Ƿ
Unicode       U+01F7
Hex entity    Ƿ
Decimal       Ƿ
CSS escape    \01F7
Named entity  (none)
Not the same  W · ƿ · Ŵ

Prefer Ƿ or Ƿ in HTML markup. You can also type Ƿ in UTF-8. There is no named entity. For the lowercase letter, use U+01BF (ƿ).

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\01F7Stylesheet content
Named entity—Not defined in HTML5
Lowercase (related)ƿ (U+01BF)Numeric only

When to Use Which

SituationUse
Capital wynn (Ƿ)Ƿ or Ƿ
Lowercase wynn (ƿ)ƿ (ƿ)
Modern capital WW (U+0057)
Capital W with circumflexŴ (Ŵ)
Generated text via ::before / ::aftercontent: "\01F7"

Live Preview

Uppercase wynn rendered alone and next to related letters.

Large glyph Ƿ
Notation ǷORD
Compared Ƿ  |  W  |  ƿ
Hint Compare: Wynn Ƿ | Modern W | Lower ƿ | Circumflex Ŵ
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 Wynn (Ƿ)</title>
  <style>
    #point::after {
      content: "\01F7";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x01F7;</p>
  <p>Using HTML Code: &#503;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ƿ</p>
  <p lang="ang">Sample: ǷORD (not WORD)</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+01F7 → &#x01F7; in HTML. The browser turns it into Ƿ.

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

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

4. Typed / sample: paste Ƿ in UTF-8. Keep modern W out of historical transcription when the source uses wynn — mark Old English with lang="ang" when appropriate.

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

Pitfalls & Tips

Common mistakes when working with U+01F7.

Named?

No named entity

HTML5 does not define a named entity for U+01F7. Use &#x01F7; or &#503;.

vs W

Not modern capital W

Keyboard W is U+0057. Wynn is a different historical letter that represented the same sound.

vs Ŵ

Not W circumflex

Ŵ (&Wcirc;) is modern W with a circumflex (Welsh). Ƿ is capital wynn.

Pair

Lowercase is U+01BF

Small letter ƿ has no named entity either — use &#x01BF; or &#447;.

CSS vs HTML

Do not mix escapes

\01F7 belongs in CSS strings. &#x01F7; / &#503; belong in HTML.

Fonts

Historical letter coverage

Some UI fonts omit wynn. Prefer a font with solid Latin Extended-B / medieval Latin coverage for Old English pages.

Browser Support

Uppercase wynn (U+01F7) and its entity forms (&#x01F7;, &#503;, CSS \\01F7) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Uppercase Wynn (&#x01F7;)

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+01F7 / entities Full support

Bottom line: Prefer &#x01F7; or &#503; in HTML. Use \\01F7 only inside CSS content. There is no named entity. Do not confuse with plain W or Ŵ.

Key Takeaways

  • Unicode: uppercase wynn is U+01F7 (decimal 503) — glyph Ƿ.
  • HTML: use &#x01F7; or &#503; — no named entity; typing Ƿ also works.
  • CSS: use \01F7 inside content for generated text.
  • Watch out: Ƿ ≠ plain W ≠ ƿ ≠ Ŵ (&Wcirc;).

One line: U+01F7 → &#x01F7; / &#503; / CSS \01F7.

Frequently Asked Questions

Use &#x01F7; (hex), &#503; (decimal), type Ƿ directly in UTF-8, or the CSS escape \01F7 in content. There is no named HTML entity.
U+01F7 (LATIN CAPITAL LETTER WYNN). Hex 01F7, decimal 503. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#503; or &#x01F7;.
No. Ƿ is U+01F7 (capital wynn). Plain W is U+0057. ƿ is U+01BF (lowercase wynn).
Use it for Old English, Middle English, and historical transcription that needs capital wynn — not as a substitute for modern W or Ŵ.
HTML entities (&#503; or &#x01F7;) go in markup. The CSS escape \01F7 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uppercase wynn (Ƿ) is Unicode U+01F7 (decimal 503) — LATIN CAPITAL LETTER WYNN in Latin Extended-B. HTML5 has no named entity — use &#x01F7; or &#503;. Its lowercase pair is U+01BF (ƿ). Used in Old English and Middle English for /w/ before modern W became standard. Do not confuse it with plain W or Ŵ (&Wcirc;).

Next: Uppercase X

Learn the HTML entity for uppercase X (U+0058).

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