-2

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

enter image description here

Jeff Schaller
  • 67,283
  • 35
  • 116
  • 255
prince
  • 1

1 Answers1

2

With bash, zsh:

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

(Your terminal must support UTF-8 characters)

cuonglm
  • 153,898
  • 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