1
vote
how do you echo a 4 digit unicode character in bash
% echo -e '\u2620'
☠
% $SHELL --version
zsh 4.3.4 (i386-redhat-linux-gnu)
…
2
votes
Emacs, xterm, mousepad, C, Unicode and UTF-8: Trying to make sense of it all
The UTF-8 encoding says that the three bytes together in a string form the euro sign, or '€'. But single bytes, like the ones produced by your C program, doesn't make sense in a UTF-8 stream. That …
