HTML Entity for Lowercase Wynn (ƿ)

What You'll Learn
How to display the lowercase wynn (ƿ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is officially named LATIN LETTER WYNN (also called wen)—a historical letter used in Old English and Middle English to represent the /w/ sound before the modern letter w became standard. It is U+01BF in the Latin Extended-B block.
Render it with ƿ, ƿ, or CSS escape \01BF. There is no named HTML entity for wynn. Do not confuse ƿ (wynn) with plain w (U+0077) or ʍ (turned w in IPA).
⚡ Quick Reference — Lowercase Wynn Entity
U+01BFLatin Extended-B
ƿHexadecimal reference
ƿDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01BF
Hex code ƿ
HTML code ƿ
Named entity (none)
CSS code \01BF
Meaning Latin letter wynn (wen)
Also called Wen
Historical Old English / Middle English /w/
Related U+01F7 = Ƿ (uppercase wynn)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase wynn (ƿ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01BF";
}
</style>
</head>
<body>
<p>Symbol (hex): ƿ</p>
<p>Symbol (decimal): ƿ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase wynn (ƿ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the lowercase wynn (ƿ) in historical and academic contexts:
w)w (U+0077) | ʍ (turned w, IPA) | ŵ (w circumflex)🧠 How It Works
Hexadecimal Code
ƿ uses the Unicode hexadecimal value 01BF to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƿ uses the decimal Unicode value 447 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01BF is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ƿ. Unicode U+01BF sits in Latin Extended-B. Uppercase wynn is U+01F7 (Ƿ). Do not confuse with plain w or IPA ʍ. Use fonts with historical Latin support for reliable rendering.
Use Cases
The lowercase wynn (ƿ) is commonly used in:
Authentic transcription of Old English manuscripts and editions where wynn represents /w/.
Historical texts and scholarly editions from the Middle English period using the wynn letter.
Historical linguistics papers, philology courses, and character charts documenting English letter evolution.
Medieval studies, Old English language courses, and museum or library digital exhibits.
Encoded editions of historical texts requiring accurate representation of wynn in HTML.
Font specimens and design references showcasing historical Latin letters.
When building HTML from encoded historical text, using ƿ or ƿ guarantees correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type ƿ directly in UTF-8 source
- Use numeric references (
ƿorƿ) when escaping is required - Use
\01BFin CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Latin Extended-B historical characters
- Distinguish ƿ (wynn) from plain
wand ʍ (IPA turned w)
Don’t
- Substitute plain
wwhen ƿ is required for authentic Old English transcription - Confuse ƿ (historical wynn) with ʍ (IPA turned w) or ŵ (w circumflex)
- Use the old incorrect CSS escape
\001BF—the correct value is\01BF - Expect a named HTML entity—none exists for wynn
- Put CSS escape
\01BFin HTML text nodes
Key Takeaways
Type ƿ directly, or use hex/decimal references
ƿ ƿFor CSS stylesheets, use the escape in the content property
\01BFUnicode U+01BF — LATIN LETTER WYNN (wen)
Old English /w/ letter; uppercase is Ƿ (U+01F7)
Previous: Lowercase W Reverse (ʍ) Next: Lowercase X (x)
❓ Frequently Asked Questions
ƿ (hex), ƿ (decimal), or \01BF in CSS content. There is no named HTML entity. In UTF-8 you can also type ƿ directly.U+01BF (LATIN LETTER WYNN). Latin Extended-B block. Hex 01BF, decimal 447. Also called wen. Used in Old English and Middle English for /w/. Uppercase form is U+01F7 (Ƿ).w (U+0077) is the modern Latin letter that replaced wynn. For authentic Old English transcription, use wynn where the source text uses it.ƿ or ƿ in HTML, or \01BF in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
