[Solved] HTML Symbol for following symbol


the code ➣ is probably as close as you’ll get (it’s for a right-pointing arrow, I don’t know the code for the corresponding left=pointing one, but one may exist) In any case, you could always transform it using rotateY like so:

(EDIT: ➤ also close, but right-pointing also)

.arrows {
  -ms-transform: rotateY(180deg);
  /* IE 9 */
  -webkit-transform: rotateY(180deg);
  /* Chrome, Safari, Opera */
  transform: rotateY(180deg);
  text-align:right;
}
<p class="arrows">&#10147;&#10147;&#10147;</p>

<p class="arrows">&#x27A4;&#x27A4;&#x27A4;</p>

Hope this helps

0

solved HTML Symbol for following symbol