[Tex/LaTex] P symbol of probabilities

symbols

I cannot find this P:

enter image description here

My \mathbb{P} and \mathcal{P} are:

enter image description here

I have found similar questions related to finding specific symbol or some P, but none of them looks for this P or shows a way to look for your specific symbol.

Best Answer

You can try this:
IP

\documentclass[12pt]{article}
\begin{document}
    I\kern-0.15em P
\end{document}

If you want to use it in math mode several times, you may want to create a macro.

\documentclass[12pt]{article}
\usepackage{amsmath}
\newcommand{\probP}{\text{I\kern-0.15em P}}
\begin{document}
    $\probP(A)=0.5$
\end{document}

IP macro