To avoid adding, unnecessary part of a font, we define
/FirstChar 32
/LastChar 126
for embedding font in a PDF document. However, this does not apply to UTF-8 fonts, as we may use characters which are not in a series (random characters throughout the UTF-8). On the other hand, it is not possible to embed the entire UTF-8 font, as it is too big for a PDF documents (and of course is useless).
How to selectively embed the fonts with a few characters? My question is about the PDF code (how to write it)?
POSSIBLE APPROACHES:
Manual: With the aid of programs like FontForge, we can capture a custom font with selected characters, but how to point to the custom characters in the PDF document? PDF only asks for the FirstChar and LastChar.
Automatic (Preferred): Embedding the entire UTF-8 font into the PDF document, then optimizing the pdf documents (with tools like pdftk) to remove unnecessary characters. Is there such tool?