HTML Entity for Lowercase K Caron (ǩ)

What You'll Learn
How to display the lowercase k with caron (ǩ) in HTML using hexadecimal, decimal, and CSS escape methods. The caron (háček) is a diacritic used in Czech, Slovak, and other Slavic orthographies where it indicates a palatal or soft k sound. This character is U+01E9 in the Latin Extended-B block.
Render it with ǩ, ǩ, or CSS escape \01E9. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase K Caron Entity
U+01E9Latin Extended-B
ǩHexadecimal reference
ǩDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01E9
Hex code ǩ
HTML code ǩ
Named entity (none)
CSS code \01E9
Meaning Latin small letter k with caron
Related U+006B = k (plain lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase k caron (ǩ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01E9";
}
</style>
</head>
<body>
<p>Symbol (hex): ǩ</p>
<p>Symbol (decimal): ǩ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase k caron (ǩ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the lowercase k caron (ǩ) in Czech, Slovak, and Slavic contexts:
k (U+006B) or ķ (k with cedilla)🧠 How It Works
Hexadecimal Code
ǩ uses the Unicode hexadecimal value 1E9 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǩ uses the decimal Unicode value 489 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01E9 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+01E9 sits in Latin Extended-B. Prefer the precomposed character over k + combining caron (U+030C) for better compatibility. Do not confuse with plain k (U+006B) or ķ (k with cedilla).
Use Cases
The lowercase k caron (ǩ) is commonly used in:
Orthography where the caron indicates a palatal or soft k sound in words and names.
Academic papers, dictionaries, and language resources describing Slavic characters.
Romanization systems that use ǩ to represent a specific sound.
Websites and apps supporting Czech, Slovak, and Central European languages.
Language-learning materials and pronunciation guides for Czech and Slovak.
Using U+01E9 ensures screen readers interpret ǩ as one character, not k plus a mark.
When generating Slavic markup, using ǩ or ǩ ensures correct output.
💡 Best Practices
Do
- Use U+01E9 (ǩ) for k with caron; use U+006B for plain k when semantics matter
- Serve pages as UTF-8; you can also type ǩ directly in UTF-8 source
- Use fonts that support Latin Extended-B for Czech and Slovak text
- Prefer the precomposed character over k + combining caron (U+030C)
- Pick one entity style (hex or decimal) per project for consistency
Don’t
- Substitute plain
kwhen ǩ is required for correct Czech or Slovak spelling - Confuse ǩ (k with caron) with ķ (k with cedilla) or plain
k - Expect a named HTML entity—none exists for this character
- Put CSS escape
\01E9in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
Key Takeaways
Three references render ǩ; no named entity exists
ǩ ǩFor CSS stylesheets, use the escape in the content property
\01E9Unicode U+01E9 — LATIN SMALL LETTER K WITH CARON
Essential for Czech, Slovak, and Slavic orthography on the web
Previous: Lowercase K (k) Next: Lowercase K Cedilla (ķ)
❓ Frequently Asked Questions
ǩ (hex), ǩ (decimal), or \01E9 in CSS content. There is no named HTML entity for ǩ.U+01E9 (LATIN SMALL LETTER K WITH CARON). Latin Extended-B block. Hex 1E9, decimal 489. Used in Czech, Slovak, and other Slavic languages.k (U+006B) is the standard lowercase k. They are distinct Unicode characters used in different orthographic contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
