hello, in my footer I'm trying to diplay copyright symbol; ©. but when i insert it into php codes it is somehow displayed as a square. how can I get over this problem.
Also how can I insert any other characters, the ones that are not found in english alphabet, because they are not displayed properly either.
my codes are below
<p class="footerpoweredby">©
<?php
printf( _c('Copyright 2005-2008 Burak's Website Powered by %1$s and %2$s|1:WordPress, 2:K2', 'k2_domain'),
'<a href="http://wordpress.org/">' . __('WordPress', 'k2_domain') . '</a>',
'<a href="http://getk2.com/" title="' . __('Loves you like a kitten.', 'k2_domain') . '">K2</a>'
);
?>
</p>