(NOTE: SO was giving me fits, interpreting html examples, so I had to quote them)
You don't tell us what font you're using; perhaps it is not installed on your Mac, and it's defaulting to a different font? Inspect and verify that it's displaying the font that you think it is.
Try changing the font of the copyright symbol to a fixed-width or type safe font; like Georgia, Consolas, or Verdana, like so:
// Style
copyright { font-family: Georgia, Consolas, Verdana }
<span class="copyright">©</span>
? Copyright 2021, Amalgamated Bipartisan Conglomerates
<p class="copyright-text">
<span style="font-family: Georgia, Consolas, Verdana">©</span>Copyright <span class="current-year"></span> (company name). All Rights Reserved
</p>
- If you set your character set to UTF-8, you can also try just using the symbol itself (not the
©
) like so:
meta charset="UTF-8">
span class="copyright">?</span>
<p class="copyright-text">
<span style="font-family: Georgia, Consolas, Verdana">?</span>Copyright <span class="current-year"></span> (company name). All Rights Reserved
</p>
? Copyright 2021, Amalgamated Bipartisan Conglomerates
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…