HTML Entity for Uppercase K Caron (Ǩ)

What You'll Learn
How to display the uppercase 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+01E8 in the Latin Extended-B block and is the uppercase pair of ǩ.
Render it with Ǩ, Ǩ, or CSS escape \01E8. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase K Caron Entity
U+01E8Latin Extended-B
ǨHexadecimal reference
ǨDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01E8
Hex code Ǩ
HTML code Ǩ
Named entity (none)
CSS code \01E8
Meaning Latin capital letter K with caron
Related U+01E9 = ǩ (lowercase pair)
U+004B = K (plain uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase K caron (Ǩ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01E8";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǩ</p>
<p>Symbol (decimal): Ǩ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase K caron (Ǩ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the uppercase K caron (Ǩ) in Czech, Slovak, and Slavic contexts:
🧠 How It Works
Hexadecimal Code
Ǩ uses the Unicode hexadecimal value 1E8 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǩ uses the decimal Unicode value 488 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01E8 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+01E8 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+004B) or Ķ (K with cedilla).
Use Cases
The uppercase K caron (Ǩ) is commonly used in:
Capitalized 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 at word start or in all-caps text.
Websites and apps supporting Czech, Slovak, and Central European languages.
Language-learning materials and pronunciation guides for Czech and Slovak.
Using U+01E8 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+01E8 (Ǩ) for K with caron; use U+004B for plain K when semantics matter
- Serve pages as UTF-8; you can also type Ǩ directly in UTF-8 source
- Link to the lowercase pair ǩ (U+01E9) when documenting case forms
- Use fonts that support Latin Extended-B for Czech and Slovak text
- Prefer the precomposed character over K + combining caron (U+030C)
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 like
&Kcaron;—none exists for U+01E8 - Use
U+001E8or CSS\001E8—the correct code isU+01E8and\01E8 - Put CSS escape
\01E8in HTML text nodes
Key Takeaways
Three references render Ǩ; no named entity exists
Ǩ ǨFor CSS stylesheets, use the escape in the content property
\01E8Unicode U+01E8 — LATIN CAPITAL LETTER K WITH CARON
Lowercase pair is U+01E9 (ǩ, k with caron)
Previous: Uppercase K (K) Next: Uppercase K Cedilla
❓ Frequently Asked Questions
Ǩ (hex), Ǩ (decimal), or \01E8 in CSS content. There is no named HTML entity for Ǩ.U+01E8 (LATIN CAPITAL LETTER K WITH CARON). Latin Extended-B block. Hex 1E8, decimal 488. Used in Czech, Slovak, and other Slavic languages.K (U+004B) is the standard uppercase K. They are distinct Unicode characters used in different orthographic contexts.&Kcaron;, no such named entity exists in the HTML specification.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, letters, and more.
8 people found this page helpful
