Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
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

7 Answers

up vote 28 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 your console, you can use hexdump.

echo -n ☠ | hexdump
share|improve this answer
1  
Mine outputs "���" instead of ☠... Why is that? – trusktr Sep 29 '12 at 4:14
@trusktr: you're not using UTF-8 terminal – vartec Sep 29 '12 at 8:02
2  
That's true. I discovered i was using LANG=C instead of LANG=en_US.UTF-8. Now my terminals in Gnome show the symbols properly... The real terminals (tty1-6) still don't though. – trusktr Oct 3 '12 at 0:09

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+VU 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

share|improve this answer
A good source for the hexademical code points is unicodelookup.com/#0x2620/1 – RobM Aug 25 '12 at 12:10
+1 for the cool key-caps effect – Chris Johnson Feb 15 at 20:18
The version of vim I'm using (7.2.411 on RHEL 6.3) doesn't respond as desired when there's a dot between the ctrl-v and the u, but works fine when that dot is omitted. – Chris Johnson Feb 15 at 20:28

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"
☠
$
share|improve this answer

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
share|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
UTF-8 characters can be 1 - 4 bytes sequences – cms Apr 12 at 19:33
% echo -e '\u2620'
☠
% $SHELL --version
zsh 4.3.4 (i386-redhat-linux-gnu)
share|improve this answer
1  
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
1  
I can't get it to work in Bash yet. :( – trusktr Sep 29 '12 at 4:06
show 2 more comments

You may need to encode the code point as octal in order for prompt expansion to correctly decode it.

U+2620 encoded as UTF-8 is E2 98 A0

so in bash

export PS1="\342\230\240" 

will make your shell prompt into skull and bones.

share|improve this answer
hi, what is the code that I should enter for "e0 b6 85"? how can I find it? – Udayantha Udy Warnasuriya Apr 12 at 13:18
just convert the hexadecimal ( base 16 ) numbers e0 b6 85 into octal (base 8 ) - use a calculator is probably the easiest way to do this – cms Apr 12 at 19:26
e0 b6 85 hex is 340 266 205 octal – cms Apr 12 at 19:30

Here's a fully internal BASH implementation, no forking, unlimited size of unicode char.

fast_chr() {
    local __octal
    local __char
    printf -v __octal '%03o' $1
    printf -v __char \\$__octal
    REPLY=$__char
}

function unichr {
    local c=$1  # ordinal of char
    local l=0   # byte ctr
    local o=63  # ceiling
    local p=128 # accum. bits
    local s=''  # output string

    (( c < 0x80 )) && { fast_chr "$c"; echo -n "$REPLY"; return; }

    while (( c > o )); do
        fast_chr $(( t = 0x80 | c & 0x3f ))
        s="$REPLY$s"
        (( c >>= 6, l++, p += o+1, o>>=1 ))
    done

    fast_chr $(( t = p | c ))
    echo -n "$REPLY$s"
}

## test harness 
for (( i=0x2500; i<0x2600; i++ )); do
    unichr $i
done

Output was:

─━│┃┄┅┆┇┈┉┊┋┌┍┎┏
┐┑┒┓└┕┖┗┘┙┚┛├┝┞┟
┠┡┢┣┤┥┦┧┨┩┪┫┬┭┮┯
┰┱┲┳┴┵┶┷┸┹┺┻┼┽┾┿
╀╁╂╃╄╅╆╇╈╉╊╋╌╍╎╏
═║╒╓╔╕╖╗╘╙╚╛╜╝╞╟
╠╡╢╣╤╥╦╧╨╩╪╫╬╭╮╯
╰╱╲╳╴╵╶╷╸╹╺╻╼╽╾╿
▀▁▂▃▄▅▆▇█▉▊▋▌▍▎▏
▐░▒▓▔▕▖▗▘▙▚▛▜▝▞▟
■□▢▣▤▥▦▧▨▩▪▫▬▭▮▯
▰▱▲△▴▵▶▷▸▹►▻▼▽▾▿
◀◁◂◃◄◅◆◇◈◉◊○◌◍◎●
◐◑◒◓◔◕◖◗◘◙◚◛◜◝◞◟
◠◡◢◣◤◥◦◧◨◩◪◫◬◭◮◯
◰◱◲◳◴◵◶◷◸◹◺◻◼◽◾◿
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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