Back
Asciify Logo
Asciify

Latin Small Letter P

Known in English for going silent at the start of words borrowed from Greek — psychology, pneumonia, pterodactyl — lowercase 'p' is the sixteenth letter of the Latin alphabet and a voiceless bilabial plosive accounting for roughly 1.9 % of characters in typical English corpora. Its ASCII code point is 112 (0x70), 32 above its uppercase counterpart 'P' at 80 (0x50), maintaining the single-bit case offset (bit 5) shared by all ASCII A–Z / a–z pairs.

Latin Letter

Technical Details

Code Example

</>
// Pointer naming convention with 'p' prefix
int value = 42;
int *pValue = &value; // Pointer to value
printf("Value: %d, Pointer: %p\n", *pValue, (void *)pValue);

Common Usage

  • Silent Greek-origin clusters: The initial combinations ps- (psalm, psychiatry), pn- (pneumatic, pneumonia), and pt- (pterodactyl, Ptolemy) preserve Greek spelling while dropping the /p/ sound in Modern English pronunciation — a pattern that regularly appears in spelling difficulty lists and standardized test preparation materials.

  • Printf pointer format: In C-family printf-style formatting, %p outputs a pointer's address in an implementation-defined format — typically hexadecimal prefixed with 0x. It is the standard way to inspect memory addresses during debugging, distinct from %x in that it is explicitly typed for pointers and may include formatting not available through other integer specifiers.

  • Unicode property escapes in regex: In PCRE, Perl, Java, and JavaScript (with the 'u' flag), the \p{...} syntax matches characters by Unicode property — \p{L} for any letter, \p{Sc} for currency symbols, \p{Greek} for Greek script characters. This prefix (with its negation \P{...}) provides one of the more powerful character classification mechanisms available in modern regex engines.

  • Diacritical variants: Compared to vowels, 'p' has a limited diacritical family — ṗ (dot above) appears in Old Irish orthography, ṕ (acute) exists in some transliteration systems, and ƥ (hook) is used in certain African language orthographies — a relatively sparse set within Unicode.

  • Silent Greek-origin clusters: The initial combinations ps- (psalm, psychiatry), pn- (pneumatic, pneumonia), and pt- (pterodactyl, Ptolemy) preserve Greek spelling while dropping the /p/ sound in Modern English pronunciation — a pattern that regularly appears in spelling difficulty lists and standardized test preparation materials.

  • Printf pointer format: In C-family printf-style formatting, %p outputs a pointer's address in an implementation-defined format — typically hexadecimal prefixed with 0x. It is the standard way to inspect memory addresses during debugging, distinct from %x in that it is explicitly typed for pointers and may include formatting not available through other integer specifiers.

  • Unicode property escapes in regex: In PCRE, Perl, Java, and JavaScript (with the 'u' flag), the \p{...} syntax matches characters by Unicode property — \p{L} for any letter, \p{Sc} for currency symbols, \p{Greek} for Greek script characters. This prefix (with its negation \P{...}) provides one of the more powerful character classification mechanisms available in modern regex engines.

  • Diacritical variants: Compared to vowels, 'p' has a limited diacritical family — ṗ (dot above) appears in Old Irish orthography, ṕ (acute) exists in some transliteration systems, and ƥ (hook) is used in certain African language orthographies — a relatively sparse set within Unicode.

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026