I am trying to display double > "»". I belive it is xBB in char set. How can I do it?
Thanks
I am trying to display double > "»". I belive it is xBB in char set. How can I do it?
Thanks
The » character is the Unicode character U+00BB;
You may print it using its Unicode code point (in bash 4.2+) or its UTF-8 hexadecimal representation using echo:
user@debian ~ % echo -e '\u00BB'
»
user@debian ~ % echo -e '\xC2\xBB'
»
Or using printf:
user@debian ~ % printf '%b\n' '\u00BB'
»
user@debian ~ % printf '%b\n' '\xC2\xBB'
»