Would it be possible with jQuery to find in all symbols that are written with
®
and wrap them with a sup tag?
var replaced = $('body').html().replace('®', '<sup>®</sup>'); $('body').html(replaced);