vote up 3 vote down star
2

I'd like to add the Unicode skull and crossbones to my shell prompt (specifically the 'SKULL AND CROSSBONES' (U+2620)) but I can't figure out the magic incantation to make echo spit it, or any other, 4 digit Unicode character. 2 digit one's are easy echo -e "\x55", for example.

In addition to the answers below it should be noted that, obviously, your terminal needs to support unicode for the output to be what you expect. gnome-terminal does a good job of this but it isn't necessarily turned on by default. Go to Terminal-> Set Character Encoding and choose Unicode (UTF-8).

flag

3 Answers

vote up 5 vote down check

In UTF-8 it's actually 6 digit (or 3 byte).

$ echo -e "\xE2\x98\xA0"
☠

:-)

To check how it's encoded by you console, you can use hexdump.

echo -n ☠ | hexdump
link|flag
vote up 3 vote down

Just put "☠" in your shell script. In the correct locale and on a Unicode-Enabled console it'll print just fine:

$ echo ☠
☠
$

An ugly "workaround" would be to output the UTF-8 sequence, but that also depends on the encoding used:

$ echo -e "\xE2\x98\xA0"
☠
$
link|flag
vote up 1 vote down
% echo -e '\u2620'
☠
% $SHELL --version
zsh 4.3.4 (i386-redhat-linux-gnu)
link|flag
that just spits out \u2620 when I do it. – masukomi Mar 2 at 16:37
For me too. Which shell are you using, Juliano? – Joachim Sauer Mar 2 at 16:50
Sorry, forgot to say that I use zsh. – Juliano Mar 2 at 16:51
Also works with zsh on Mac OS 10.5. Nice! – Craig S Mar 2 at 22:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.