-2

Is it possible to get this star symbol in Linux, as shown in this screen shot?

enter image description here

Jeff Schaller
  • 66,199
  • 35
  • 114
  • 250
prince
  • 1
  • 1

1 Answers1

2

With bash, zsh:

$ printf '%b\n' '\U2605'
★

(Your terminal must support UTF-8 characters)

cuonglm
  • 150,973
  • 38
  • 327
  • 406
  • cuonglm: this question is answered in this link `http://unix.stackexchange.com/questions/25903/awesome-symbols-and-characters-in-a-bash-prompt` – AReddy Jul 13 '16 at 05:40