HTML Entity for Uppercase P Hook (Ƥ)

What You'll Learn
How to display the uppercase P with hook (Ƥ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is the Latin capital letter P with hook, used in IPA phonetic notation, African language orthography, and linguistic transcription. It is U+01A4 in the Latin Extended-B block.
Render it with Ƥ, Ƥ, or CSS escape \01A4. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase P Hook Entity
U+01A4Latin Extended-B
ƤHexadecimal reference
ƤDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01A4
Hex code Ƥ
HTML code Ƥ
Named entity (none)
CSS code \01A4
Meaning Latin capital letter P with hook
Related U+01A5 = lowercase (ƥ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase P hook (Ƥ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01A4";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƥ</p>
<p>Symbol (decimal): Ƥ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase P hook (Ƥ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase P hook (Ƥ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ƥ uses the Unicode hexadecimal value 01A4 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƥ uses the decimal Unicode value 420 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01A4 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+01A4 sits in Latin Extended-B. Lowercase equivalent: U+01A5 (ƥ). Do not confuse Ƥ with plain P (U+0050). There is no named HTML entity.
Use Cases
The uppercase P hook (Ƥ) is commonly used in:
Phonetic transcriptions and linguistic notation requiring the P-with-hook character.
International Phonetic Alphabet content and phonetic reference materials using Ƥ.
Extended Latin orthography in African language scripts that use the hooked P variant.
Books, articles, and editorial content with phonetic scripts or specialized terminology using Ƥ.
Extended Latin orthographic systems where the hooked P variant is required for accuracy.
Websites requiring correct rendering of Latin Extended-B for linguistic and language content.
User input that may contain Ƥ; use UTF-8 encoding and numeric entities as needed.
💡 Best Practices
Do
- Use
ƤorƤin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ƥ directly in UTF-8 source
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ƥ from plain
P(U+0050) and ℙ (double-struck)
Don’t
- Assume a named entity exists—there is none for Ƥ
- Substitute plain
Pwhen Ƥ is required for linguistic accuracy - Put CSS escape
\01A4in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Three references render Ƥ (no named entity)
Ƥ ƤFor CSS stylesheets, use the escape in the content property
\01A4Unicode U+01A4 — LATIN CAPITAL LETTER P WITH HOOK
Used in IPA notation, linguistics, and African language orthography
Previous: Uppercase P Double Struck Capital (ℙ) Next: Uppercase P Script Capital
❓ Frequently Asked Questions
Ƥ (hex), Ƥ (decimal), or \01A4 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01A4 (LATIN CAPITAL LETTER P WITH HOOK). Latin Extended-B block. Hex 01A4, decimal 420. Used in IPA phonetic notation and African language orthography. Lowercase form is U+01A5 (ƥ).Ƥ or Ƥ) is used in HTML content. The CSS entity (\01A4) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ƥ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, phonetic symbols, and more.
8 people found this page helpful
