Copyright Symbol is returning garbage character.
Using the unicode character © to display the copyright symbol introduces the extra character © How do we get rid of that character? This  is nothing but extra two bytes which comes with the default unicode encoding. It is due, to the output we are generating from the BIP is UTF-8, and the explorer(IE,FIREFOX) we are viewing doesn't understand this. So, we got to use different encoding to get the character displayed properly. < xsl:output method="html" encoding="ISO-8859-1" /> would certainly help. Just making this change, the character is render properly.