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