HTML Entity for Lowercase P Hook (ƥ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+01A5

What Is the Lowercase P Hook Entity?

Lowercase p with hook (ƥ) is the Unicode character at U+01A5 in Latin Extended-B. Official name: LATIN SMALL LETTER P WITH HOOK — the letter p with a hook, used in IPA and some African orthographies.

Remember
Character     ƥ
Unicode       U+01A5
Hex entity    ƥ
Decimal       ƥ
CSS escape    \01A5
Named entity  (none)
Capital       Ƥ (U+01A4)
Not the same  p (U+0070)

Prefer ƥ or ƥ in HTML when you need an entity. You can also type ƥ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entityƥHTML markup
Decimal entityƥHTML markup
Direct characterƥHTML text (UTF-8)
CSS escape\01A5Stylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Need an entity in HTML sourceƥ or ƥ
IPA / phonetic transcriptionƥ → ƥ (voiceless bilabial implosive)
African orthography needing ƥƥ or typed ƥ
Everyday letter pType p (U+0070) — see Lowercase P
Uppercase P with hookUppercase P Hook (Ƥ, U+01A4)
Generated text via ::before / ::aftercontent: "\01A5"
Looking for a named entityDoes not exist — use numeric form

Live Preview

Glyph alone, in a sample line, and next to related forms.

Glyph ƥ
Large glyph ƥ
Sample ƥ · IPA / orthography notation
Compared ƥ   p   Ƥ
With entities Hex: ƥ | Decimal: ƥ

Complete HTML Example

One page that shows ƥ with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ƥ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase P Hook (ƥ) in HTML</title>
  <style>
    #point::after {
      content: "\01A5";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x1A5;</p>
  <p>Built with Decimal: &#421;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ƥ</p>
  <p>IPA sample: [&#x1A5;]</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+01A5 → &#x1A5; in HTML. The browser turns it into ƥ.

2. Decimal: same code point as 421 → &#421;. Same result as hex.

3. CSS: use \01A5 in content (not an HTML entity). #point::after appends ƥ.

4. Typed: paste ƥ in a UTF-8 document for IPA or orthographic text. There is no named entity — numeric form is required when you need an entity.

Pitfalls & Tips

Common mistakes when working with lowercase p with hook.

Named?

No named entity

HTML5 does not define a named entity for U+01A5. Use &#x1A5; or &#421;.

p

Not plain p

Plain p is U+0070. ƥ adds a hook for IPA / orthography — different letter, different code point.

Fonts

Need Extended-B coverage

Some fonts omit Latin Extended-B. Prefer a font that includes U+01A5 for reliable glyphs.

CSS

Pad the CSS escape

Prefer \01A5 (four hex digits). A short \1A5 can swallow the next hex digit if one follows immediately.

CSS vs HTML

Do not mix escapes

\01A5 belongs in CSS strings. &#x1A5; / &#421; belong in HTML.

Purpose

Not for body copy

Use plain p in normal English sentences. Reserve ƥ for phonetic or orthographic contexts.

Semicolon

End references

Always finish entities with ; — write &#x1A5;, not &#x1A5.

Browser Support

Lowercase p with hook (U+01A5) and its entity forms (&#x1A5;, &#421;, CSS \\01A5) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Lowercase P Hook (&#x01A5;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+01A5 Full support

Bottom line: Prefer &#x1A5; or &#421; in HTML when encoding must be explicit, and \\01A5 only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: lowercase p with hook is U+01A5 (decimal 421) — glyph ƥ.
  • HTML: use &#x1A5; or &#421; — no named entity.
  • CSS: use \01A5 inside content for generated text.
  • Watch out: ƥ ≠ plain p (U+0070).

One line: U+01A5 → &#x1A5; / &#421; / CSS \01A5 (no named entity).

Frequently Asked Questions

Use &#x1A5; (hex), &#421; (decimal), type ƥ in UTF-8, or the CSS escape \01A5 in content. There is no HTML5 named entity for U+01A5.
U+01A5 (LATIN SMALL LETTER P WITH HOOK). Hex 1A5, decimal 421. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric references like &#421; or &#x1A5; when you need an entity form.
Use it for IPA phonetic transcription of the voiceless bilabial implosive, African orthographies, and linguistic content that needs ƥ. Prefer plain p for ordinary English words.
HTML entities (&#421; or &#x1A5;) go in markup. The CSS escape \01A5 goes in stylesheet strings (usually content on ::before/::after).
No. Plain p is U+0070 (Basic Latin). ƥ (U+01A5) is a distinct Latin Extended-B letter with a hook — do not substitute one for the other.

Did you know?

Lowercase p with hook is Unicode U+01A5 (decimal 421) — LATIN SMALL LETTER P WITH HOOK in Latin Extended-B. HTML5 has no named entity for it — use &#x1A5; or &#421;. Capital is U+01A4 (Ƥ). In IPA it marks the voiceless bilabial implosive; it also appears in some African orthographies.

Next: Lowercase Q

Learn the HTML entity for the lowercase letter q.

Lowercase Q tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful