HTML Entity for Lowercase P Hook (ƥ)

What You'll Learn
How to display the lowercase p with hook (ƥ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01A5 in the Latin Extended-B block—a single precomposed glyph with a hook attached to the letter p.
Render it with ƥ, ƥ, or CSS escape \01A5. There is no named HTML entity. In UTF-8 documents you can also type ƥ directly. It appears in IPA phonetic notation (voiceless bilabial implosive) and in some African language orthographies—not to be confused with plain p (U+0070).
⚡ Quick Reference — Lowercase P Hook Entity
U+01A5Latin Extended-B
ƥHexadecimal reference
ƥDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01A5
Hex code ƥ
HTML code ƥ
Named entity (none)
CSS code \01A5
Meaning Latin small letter p with hook
Related U+01A4 = Ƥ (uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase p with hook (ƥ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01A5";
}
</style>
</head>
<body>
<p>Symbol (hex): ƥ</p>
<p>Symbol (decimal): ƥ</p>
<p>Symbol (direct): ƥ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase p with hook (ƥ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the lowercase p with hook (ƥ) in phonetic and orthographic contexts:
🧠 How It Works
Hexadecimal Code
ƥ uses the Unicode hexadecimal value 01A5 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƥ uses the decimal Unicode value 421 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type ƥ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this letter.
CSS Entity
\01A5 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: ƥ. Unicode U+01A5 sits in Latin Extended-B. Uppercase equivalent: U+01A4 (Ƥ). Do not confuse with plain p (U+0070) or ɓ (b with hook).
Use Cases
The lowercase p with hook (ƥ) is commonly used in:
International Phonetic Alphabet transcription for the voiceless bilabial implosive.
Writing systems in some West and Central African languages that use ƥ as a distinct letter.
Phonetic dictionaries, language documentation, and academic papers requiring precise symbols.
Language-learning courses and phonetics tutorials that teach correct IPA symbols.
Font specimens showcasing Latin Extended-B hook-letter support.
Using U+01A5 ensures assistive technologies interpret the phonetic symbol correctly.
When building HTML from encoded text, ƥ or ƥ guarantees correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type ƥ directly in UTF-8 source
- Use numeric references (
ƥorƥ) when escaping is required - Use ƥ only when the source text specifies the p-with-hook character
- Choose fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish ƥ from plain
p(U+0070) and from ɓ (b with hook)
Don’t
- Substitute plain
pwhen ƥ is the correct phonetic or orthographic character - Use ƥ in normal English or Latin text where p is intended
- Expect a named HTML entity—none exists for ƥ
- Put CSS escape
\01A5in HTML text nodes - Confuse ƥ with ƣ (q with hook) or ɓ (b with hook)
Key Takeaways
Type ƥ directly, or use hex/decimal references
ƥ ƥFor CSS stylesheets, use the escape in the content property
\01A5Unicode U+01A5 — LATIN SMALL LETTER P WITH HOOK
IPA & African orthographies; uppercase is Ƥ (U+01A4)
Previous: Lowercase P (p) Next: Lowercase Q
❓ Frequently Asked Questions
ƥ (hex), ƥ (decimal), or \01A5 in CSS content. There is no named HTML entity for ƥ. In UTF-8 you can also type ƥ directly.U+01A5 (LATIN SMALL LETTER P WITH HOOK). Latin Extended-B block. Hex 01A5, decimal 421. Used in IPA phonetic notation and some African language orthographies. Uppercase form is U+01A4 (Ƥ).ƥ or ƥ, or the CSS entity \01A5. In UTF-8 pages you can type ƥ directly.p (U+0070) is the standard Latin lowercase letter. They are not interchangeable in linguistic or encoded text.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
