[Tex/LaTex] What’s the symbol for a triangle pointing to the right (WHITE RIGHT-POINTING POINTER ▻)

mathjaxpointersymbols

I am looking for a MathJax equivalent of the Unicode symbol called WHITE RIGHT-POINTING POINTER:

It is a little bit longer than \triangleright, which looks like this:

A screenshot of <code>\triangleright</code>

Also, I wasn't able to find it using http://detexify.kirelabs.org/.


Thanks to marmot I was able to find the LaTeX equivalent: it is called \whitepointerright. It does not work in MathJax, though.

Best Answer

MathJax is generally considered off-topic here, but you can use \rhd in LaTeX or in MathJax to get something close to \whitepointerright. The following image is taken from Safari using MathJax:

enter image description here

The code renders on Chrome, Firefox, Safari:

\[
A\triangleright B\rhd C
\]

with <head> code:

<script type="text/x-mathjax-config">
  MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript"
  src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>

and also works in LaTeX using the amsfonts package:

enter image description here