Search code examples
htmlmathjax

looking for a right counterclockwise arrow


I am rewriting this question as it was closed because recommending books or sites are not allowed. So please don't recommend books or sites. :)

I have an online course that contains mathematical equations and formulas. My instructor gives me the equations and formulas in image form or using Microsoft Word. I translate convert these in HTML using Mathjax. However, I came upon an illustration (see below) wherein a fraction, there is a counterclockwise arrow on the leftside coming from the numerator to the denominator. On the right side of the fraction is another arrow. This time it is a right counterclockwise arrow coming from the denominator to the numerator.

this is a sample equation. On the leftside of the fraction is a left counterclockwise arrow. On the rightside of the fraction is a right counterclockwise arrow.

The left arrow, I was able to find in HTML entities, but somehow I could not find one for the rightside. I went through the HTML entities symbols and search in Mathjax, but I could not find that arrow. This is my last stop to see if anyone knows if such an arrow exist in either HTML entities or in Mathjax. I hope to avoid using an image for this one.

Thanks in advance.


Solution

  • Here or nowhere: http://xahlee.info/comp/unicode_arrows.html

    .mirror{
        display: inline-block; 
       transform: rotate(180deg) scaleX(-1);
    }
    <span>⤸</span>	RIGHT-SIDE ARC CLOCKWISE ARROW  <br/>
    <span>⤹</span>	LEFT-SIDE ARC ANTICLOCKWISE ARROW   <br/>
    <hr/>
    <span class="mirror">⤸</span>	RIGHT-SIDE ARC CLOCKWISE ARROW transformed <br/>
    <span class="mirror">⤹</span>	LEFT-SIDE ARC ANTICLOCKWISE ARROW transformed  <br/>