up vote 9 down vote favorite
5
share [g+] share [fb]

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).

link|improve this question
1  
Note that your "2 digit one's are easy (to echo)" comment is only valid for values up to "\x7F" in a UTF-8 locale (which the bash tag suggests yours is)... patterns represented by a single byte are never in the range`\x80-\xFF`. This range is illegal in singl-byte UTF-8 chars. eg a Unicode Codepoint value of U+0080 (ie. \x80) is actually 2 bytes in UTF-8.. \xC2\x80.. – Peter.O Dec 2 '11 at 5:51
​​​​​​​​​​​​​​​​​​ – Peter.O Dec 2 '11 at 5:57
feedback

5 Answers

up vote 13 down vote accepted

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|improve this answer
feedback

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|improve this answer
feedback

quick one-liner to convert UTF-8 characters into their 3-byte format:

echo ü | hexdump | awk '{print "\x"toupper(substr($2,3,4)) "\x"toupper(substr($2,0,2)) "\x"toupper(substr($3,3,4))}' | head -1

link|improve this answer
I wouldn't call the above example quick (with 11 commands and their params)... Also it only handles 3 byte UTF-8 chars` (UTF-8 chars can be 1, 2, or 3 bytes)... This is a bit shorter and works for 1-3++++ bytes: printf "\\\x%s" $(printf '☠'|xxd -p -c1 -u) .... xxd is shipped as part of the 'vim-common' package – Peter.O Dec 2 '11 at 17:01
PS: I just noticed that the above hexdump/awk example is swithching the sequence of bytes in a byte-pair. This does not apply to a UTF-8 dump. It would be relavent if it were a dump of UTF-16LE and wanted to output Unicode Codepoints, but it doesn't make sense here as the input is UTF-8 and the output is exactly as input (plus the \x before each hexdigit-pair) – Peter.O Dec 2 '11 at 17:35
feedback
% echo -e '\u2620'
☠
% $SHELL --version
zsh 4.3.4 (i386-redhat-linux-gnu)
link|improve this answer
that just spits out \u2620 when I do it. – masukomi Mar 2 '09 at 16:37
For me too. Which shell are you using, Juliano? – Joachim Sauer Mar 2 '09 at 16:50
Sorry, forgot to say that I use zsh. – Juliano Mar 2 '09 at 16:51
Also works with zsh on Mac OS 10.5. Nice! – Craig S Mar 2 '09 at 22:43
feedback

So long as your text-editors can cope with Unicode (presumably encoded in UTF-8) you can enter the Unicode code-point directly.

For instance, in the vim text-editor you would enter insert mode and press CTRL+V. U and then the code-point number as a 4-digit hexadecimal number (pad with zeros if necessary). So you would type CTRL+V. U 2 6 2 0.

At a terminal running Bash you would type CTRL+SHIFT+U and type in the hexadecimal code-point of the character you want. During input your cursor should show an underlined u. The first non-digit you type ends input, and renders the character. So you could be able to print U+2620 in Bash using the following:

echo CTRL+SHIFT+U2620ENTERENTER

(The first enter ends Unicode input, the second runs the echo command)

Credit: http://askubuntu.com/questions/32764/using-alt-keycode-for-accents/32768#32768

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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