Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I show the "up" and "down" arrow keyboard key in GitHub markdown?

How do I show the "up" and "down" arrow keyboard keys (←, ↑, → and ↓) in GitHub markdown? So far I am able to show up and down. But how do I show the arrow symbol instead the text "up" and "down"?

like image 971
Sun Bear Avatar asked Mar 02 '19 02:03

Sun Bear


Video Answer


1 Answers

As mentioned in "Unicode in Github markdown", you need to use the decimal value of the characters you want.

In your case, the arrow symbols, as shown here:

  • left arrow: ← ←
  • upward arrow: ↑ ↑
  • right arrow: → →
  • downward arrow: ↓ ↓
like image 87
VonC Avatar answered Sep 18 '22 11:09

VonC