HTML Entity for Uppercase K Hook (Ƙ)

What You'll Learn
How to display the uppercase K with hook (Ƙ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0198 in the Latin Extended-B block. It is the capital form of ƙ and is used in Hausa (West Africa) and in the International Phonetic Alphabet (IPA) to represent the voiceless velar implosive. The hook below the letter K distinguishes it from plain K.
Render it with Ƙ, Ƙ, or CSS escape \198. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase K Hook Entity
U+0198Latin Extended-B
ƘHexadecimal reference
ƘDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0198
Hex code Ƙ
HTML code Ƙ
Named entity (none)
CSS code \198
Meaning Latin capital letter K with hook
Related U+0199 = ƙ (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 hook (Ƙ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\198";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƙ</p>
<p>Symbol (decimal): Ƙ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase K hook (Ƙ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the uppercase K hook (Ƙ) in Hausa and phonetic contexts:
🧠 How It Works
Hexadecimal Code
Ƙ uses the Unicode hexadecimal value 198 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƙ uses the decimal Unicode value 408 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\198 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+0198 sits in Latin Extended-B. Lowercase pair: U+0199 (ƙ). Prefer the precomposed character over K + combining hook. Do not confuse with plain K (U+004B), Ķ (K cedilla), or Ǩ (K caron).
Use Cases
The uppercase K hook (Ƙ) is commonly used in:
Capital letter in the Hausa alphabet, used at the start of words and in all-caps text.
International Phonetic Alphabet symbol for the voiceless velar implosive in capital form.
Websites, dictionaries, and educational content for Hausa and related languages.
Academic papers and resources on implosive consonants and phonological notation.
Websites and apps supporting Hausa or IPA with proper encoding and display.
Correct Unicode ensures screen readers handle Ƙ properly in Hausa and phonetic content.
When generating linguistic markup, using Ƙ or Ƙ ensures correct output.
💡 Best Practices
Do
- Use U+0198 (Ƙ) for K with hook; 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+0199) when documenting case forms
- Use fonts that support Latin Extended-B for Hausa and IPA text
- Prefer the precomposed character over K + combining hook mark
Don’t
- Substitute plain
Kwhen Ƙ is required for correct Hausa or IPA notation - Confuse Ƙ (K with hook) with Ķ (K cedilla) or Ǩ (K caron)
- Expect a named HTML entity like
&Khook;—none exists for U+0198 - Use
U+00198or CSS\00198—the correct code isU+0198and\198 - Put CSS escape
\198in HTML text nodes
Key Takeaways
Three references render Ƙ; no named entity exists
Ƙ ƘFor CSS stylesheets, use the escape in the content property
\198Unicode U+0198 — LATIN CAPITAL LETTER K WITH HOOK
Lowercase pair is U+0199 (ƙ, k with hook)
Previous: Uppercase K Cedilla (Ķ) Next: Uppercase L (L)
❓ Frequently Asked Questions
Ƙ (hex), Ƙ (decimal), or \198 in CSS content. There is no named HTML entity for Ƙ.U+0198 (LATIN CAPITAL LETTER K WITH HOOK). Latin Extended-B block. Hex 198, decimal 408. Used in Hausa and in the IPA for the voiceless velar implosive.K (U+004B) is the standard uppercase K. They are distinct Unicode characters used in different orthographic and phonetic contexts.&Khook;, 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
