[Tex/LaTex] ‘i’ symbol in TeX

symbols

Consider:

Enter image description here

I would like to know the LaTeX command for the symbol above. I searched for it online and tried Detexify, but I could not find it.

Best Answer

\documentclass{article}
\usepackage{bbm}
\begin{document}
$\mathbbm{i}$
\end{document}

enter image description here

One drawback, of course is that the bbm fonts are bitmapped. There is a scalable alternative with the STIX fonts, but it looks slightly different.

\documentclass[border=10]{standalone}
\usepackage{amsmath}

\DeclareFontEncoding{LS1}{}{}
\DeclareFontSubstitution{LS1}{stix}{m}{n}

\newcommand{\bbi}{\text{\usefont{LS1}{stixbb}{m}{n}i}}

\begin{document}

$\bbi$
\end{document}

enter image description here