Aug 18, 2006 #1 zackiv31 Programmer Joined May 25, 2006 Messages 148 Location US I have a unicode character (a black triangle pointing up) that I want to print in perl. Is this possible? How would I go about doing it. Looking it up in winxp character map its: U+25B2
I have a unicode character (a black triangle pointing up) that I want to print in perl. Is this possible? How would I go about doing it. Looking it up in winxp character map its: U+25B2
Aug 18, 2006 #2 TrojanWarBlade Programmer Joined Apr 13, 2005 Messages 1,783 Location GB Try this: Code: perl -e 'binmode STDOUT, ":utf8"; print "\x{25b2}", "\n";' Trojan. Upvote 0 Downvote