The glyph you're looking for seems to be U+25BB WHITE RIGHT-POINTING POINTER which is available in the STIX fonts as \whitepointerright.
The easiest way is to import it as a “text symbol”:
\documentclass{article}
\usepackage{amsmath}
\DeclareFontFamily{U}{stixscr}{}
\DeclareFontShape{U}{stixscr}{m}{n}{<-> s*[1.1] stix-mathscr}{}
\DeclareRobustCommand{\pointright}{%
\mathrel{\text{\usefont{U}{stixscr}{m}{n}\symbol{"D2}}}%
}
\begin{document}
$A\pointright B$
\end{document}
The 1.1 magnification factor is used just by way of example. Experiment until finding the right size.

With pict2e:
\documentclass{article}
\usepackage{amsmath}
\usepackage{pict2e,xfp}
\makeatletter
\DeclareRobustCommand{\pointright}{%
\mathrel{\mathpalette\point@right\relax}%
}
\newcommand{\point@right}[2]{%
\vcenter{\hbox{\point@@right{#1}}}%
}
\newcommand{\point@@right}[1]{%
\sbox\z@{$\m@th#1\triangleright$}%
\setlength{\unitlength}{\ht\z@}%
\setlength{\dimen@}{\wd\z@}%
\linethickness{%
\ifx#1\displaystyle 0.09\unitlength
\else\ifx#1\textstyle 0.09\unitlength
\else\ifx#1\scriptstyle 0.11\unitlength
\else 0.13\unitlength\fi\fi\fi
}%
\edef\point@wd{\fpeval{2*(\dimen@/\unitlength)}}%
\begin{picture}(\point@wd,1)
\roundjoin
\polyline(0,0.5)(0,0)(\point@wd,0.5)(0,1)(0,0.2)
\end{picture}%
}
\makeatother
\begin{document}
$A\pointright B \triangleright C$
$\pointright\triangleright$
$\scriptstyle\pointright\triangleright$
$\scriptscriptstyle\pointright\triangleright$
\end{document}

\whitepointerright. – Mateusz Piotrowski Dec 10 '17 at 21:11▻or as entity&x25bb;in HTML/MathJax. – Heiko Oberdiek Dec 10 '17 at 22:25