HTML Entity for Lambda Stroke (ƛ)

What You'll Learn
How to display the Lambda stroke (ƛ) in HTML using hexadecimal, decimal, and CSS escape methods. The character is used in linguistic and phonetic notation (e.g. Americanist phonetics).
It is U+019B (LATIN SMALL LETTER LAMBDA WITH STROKE) in the Latin Extended-B block (U+0180–U+024F). Use ƛ, ƛ, or CSS \019B. Distinct from Greek lambda (λ, λ). There is no named HTML entity for U+019B.
⚡ Quick Reference — Lambda Stroke
U+019BLatin Extended-B Unicode block
ƛHexadecimal reference
ƛDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+019B
Hex code ƛ
HTML code ƛ
Named entity (none)
CSS code \019B
Meaning Latin letter (phonetic notation)
Glyph ƛ
Example taƛ (Americanist)Complete HTML Example
This example shows the Lambda stroke (U+019B) using hexadecimal code, decimal HTML code, and a CSS content escape. This character has no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\019B";
}
</style>
</head>
<body>
<p>Lambda Stroke using Hexadecimal: ƛ</p>
<p>Lambda Stroke using Decimal: ƛ</p>
<p id="point">Lambda Stroke using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Lambda stroke (ƛ) is widely supported when fonts include the Latin Extended-B block (U+0180–U+024F):
👀 Live Preview
See the Lambda stroke (ƛ) in linguistic and phonetic contexts:
🧠 How It Works
Hexadecimal Code
ƛ uses the Unicode hexadecimal value 019B to display the Lambda stroke (ƛ).
Decimal HTML Code
ƛ uses the decimal Unicode value 411 for the same character.
CSS Entity
\019B is used in CSS stylesheets in the content property, often on ::after following a base character in markup.
No Named Entity
U+019B has no standard &...; named form. Use hex, decimal, or CSS escape only.
Same visual result
All three methods produce ƛ (ƛ). Unicode U+019B is in the Latin Extended-B block. Next: Last Quarter Moon.
Use Cases
The Lambda stroke (ƛ) is commonly used in:
Americanist phonetic notation, phonological descriptions, and linguistic papers.
Phonetic transcription and pronunciation guides with extended Latin symbols.
Dictionary entries and language reference content using ƛ.
Orthographies and descriptive linguistics employing the Lambda stroke.
Linguistics courses, language-learning apps, and EdTech phonetics material.
Phonetics, phonology, and linguistics publications using ƛ in notation.
💡 Best Practices
Do
- Use
ƛorƛin HTML content - Use fonts that support the Latin Extended-B block (U+019B)
- Set
<meta charset="utf-8"> - Pick one numeric style per project
- Add
aria-labelor nearby text (e.g. “Lambda stroke”) for accessibility - For Greek lambda (λ) use
U+03BBorλ, not U+019B
Don’t
- Expect a named HTML entity for U+019B
- Use CSS
\019Binside HTML text nodes - Use fonts without Latin Extended-B support
- Mix entity styles randomly in one file
- Confuse U+019B (ƛ) with Greek lambda λ (U+03BB)
Key Takeaways
Two HTML numeric references plus CSS for U+019B
ƛ ƛFor CSS, use \019B in the content property
Unicode U+019B — LATIN SMALL LETTER LAMBDA WITH STROKE
Latin Extended-B block; glyph ƛ (ƛ)
Previous: Kip Sign (U+20AD) Next: Last Quarter Moon
❓ Frequently Asked Questions
ƛ (hex), ƛ (decimal), or \019B in CSS content. There is no named entity. All methods render ƛ (ƛ) when the font supports U+019B.U+019B (LATIN SMALL LETTER LAMBDA WITH STROKE). Latin Extended-B block (U+0180–U+024F). Hex 019B, decimal 411. Used in linguistic and phonetic notation; distinct from Greek lambda (U+03BB).ƛ or ƛ) go in markup. The CSS escape \019B is used in stylesheets, typically on ::before or ::after. Both render ƛ (ƛ).Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, phonetic notation, linguistics, and more.
8 people found this page helpful
