Use the LastResort font in a web page

font

I've read that Apple has a hidden system font, called "Last Resort", that's used as a last ditch effort to show a unicode character in some cases.

I'd like to use this font in a web page, to debug unicode issues. Is this possible?

I've tried using:

font-family: "LastResort"

in CSS, but it didnt seem to work. Any suggestions?

EDIT: Note I originally put the attribute "font-face", which I've changed to "font-family", and have been using in my local tests.

Best Answer

Use the following instead:

font-family: 'LastResort';

However, this seems like an XY Problem. If you are having trouble with Unicode characters while developing for the web, I would suggest asking about your original issue on Stack Overflow.


Note: font-face is not a valid CSS property. It is an at-rule. The correct property is font-family.