Forum How do I...?

Fonts Installed but still get no glyphs for character U+FFFD, fallback to '?'

lm1969
Hi Team,

I need some help with our installation. I have only configured serif font and it looks like its being picked up but the Trademark Symbol is not printing...
I did some debugging, here is output ....

prince: debug: font request: serif
prince: used font: Trebuchet MS, Regular
prince: warning: no glyphs for character U+FFFD, fallback to '?'


Below is the section of the fonts.css i have modified.

/* ************** Lloyd ************* */

/* serif, Bold */
@font-face {
font-family: "serif";
font-weight: bold;
font-style: normal;
font-stretch: normal;
src: url("/usr/share/fonts/msttcore/trebucbd.ttf")
}

/* serif, Bold Italic */
@font-face {
font-family: "serif";
font-weight: bold;
font-style: italic;
font-stretch: normal;
src: url("/usr/share/fonts/msttcore/trebucbi.ttf")
}

/* serif, Italic */
@font-face {
font-family: "serif";
font-weight: normal;
font-style: italic;
font-stretch: normal;
src: url("/usr/share/fonts/msttcore/trebucit.ttf")
}

/* serif, Regular */
@font-face {
font-family: "serif";
font-weight: normal;
font-style: normal;
font-stretch: normal;
src: url("/usr/share/fonts/msttcore/trebuc.ttf")
}


/* ************** Lloyd ************* */
mikeday
The warning about U+FFFD indicates a probable character encoding issue. Is this a UTF-8 document? How is the trademark symbol represented? For example, if you encode it as ™ does it work?