Zwei Wege
CSS
@font-face {
font-family: 'MyFont';
src: url(https://fonts.googleapis.com/css2?family=Space+Mono&display=swap);
unicode-range: U+000AE, U+000A9;
}
p{font-family: 'MyFont', 'Open Sans', sans-serif;}
JavaScript
$(function() {
$('h1,p,a,span,li,dl,td').each(function(i, elem) {
$(elem).html(function(i, html) {
return html.replace(/\u00ae/g, "<sup>®</sup>");
});
$(elem).html(function(i, html) {
return html.replace(/\u00a9/g, "<sup>©</sup>");
});
});
});
Quellen: