HTML Entity for Lowercase K Hook (ƙ)

What You'll Learn
How to display the lowercase k with hook (ƙ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0199 in the Latin Extended-B block. It 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 \199. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase K Hook Entity
U+0199Latin Extended-B
ƙHexadecimal reference
ƙDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0199
Hex code ƙ
HTML code ƙ
Named entity (none)
CSS code \199
Meaning Latin small letter k with hook
IPA usage Voiceless velar implosive
Related U+006B = k (plain lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase k hook (ƙ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\199";
}
</style>
</head>
<body>
<p>Symbol (hex): ƙ</p>
<p>Symbol (decimal): ƙ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase k hook (ƙ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the lowercase k hook (ƙ) in Hausa and phonetic contexts:
k (U+006B) or ķ (k with cedilla)🧠 How It Works
Hexadecimal Code
ƙ uses the Unicode hexadecimal value 199 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƙ uses the decimal Unicode value 409 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\199 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+0199 sits in Latin Extended-B. Prefer the precomposed character over k + combining hook. Do not confuse with plain k (U+006B), ķ (k cedilla), or ǩ (k caron).
Use Cases
The lowercase k hook (ƙ) is commonly used in:
Official letter in the Hausa alphabet, representing the voiceless velar implosive sound.
International Phonetic Alphabet symbol for the voiceless velar implosive.
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+0199 (ƙ) for k with hook; 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 Hausa and IPA text
- Prefer the precomposed character over k + combining hook mark
- Pick one entity style (hex or decimal) per project for consistency
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—none exists for this character
- Put CSS escape
\199in 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
\199Unicode U+0199 — LATIN SMALL LETTER K WITH HOOK
Essential for Hausa orthography and IPA implosive notation
Previous: Lowercase K Cedilla (ķ) Next: Lowercase K Kra
❓ Frequently Asked Questions
ƙ (hex), ƙ (decimal), or \199 in CSS content. There is no named HTML entity for ƙ.U+0199 (LATIN SMALL LETTER K WITH HOOK). Latin Extended-B block. Hex 199, decimal 409. Used in Hausa and in the IPA for the voiceless velar implosive.k (U+006B) is the standard lowercase k. They are distinct Unicode characters used in different orthographic and phonetic contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
