Can I use the LastResort font in a web page?
Clash Royale CLAN TAG#URR8PPP
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.
font
add a comment |
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.
font
1. Please provide a source for macOS having the font. 2. Just because macOS has it doesn't mean Safari can access it and therefore the developer can access it through CSS. 3. This seems like an XY Problem. If you are having trouble with Unicode characters while developing for the web, I would suggest asking your about original issue on stack overflow.
– JBis
Feb 21 at 15:11
Ok it does exist. /System/Library/Fonts
– JBis
Feb 21 at 15:15
add a comment |
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.
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.
font
font
edited Feb 21 at 15:51
Brad Parks
asked Feb 21 at 14:48
Brad ParksBrad Parks
1,2261117
1,2261117
1. Please provide a source for macOS having the font. 2. Just because macOS has it doesn't mean Safari can access it and therefore the developer can access it through CSS. 3. This seems like an XY Problem. If you are having trouble with Unicode characters while developing for the web, I would suggest asking your about original issue on stack overflow.
– JBis
Feb 21 at 15:11
Ok it does exist. /System/Library/Fonts
– JBis
Feb 21 at 15:15
add a comment |
1. Please provide a source for macOS having the font. 2. Just because macOS has it doesn't mean Safari can access it and therefore the developer can access it through CSS. 3. This seems like an XY Problem. If you are having trouble with Unicode characters while developing for the web, I would suggest asking your about original issue on stack overflow.
– JBis
Feb 21 at 15:11
Ok it does exist. /System/Library/Fonts
– JBis
Feb 21 at 15:15
1. Please provide a source for macOS having the font. 2. Just because macOS has it doesn't mean Safari can access it and therefore the developer can access it through CSS. 3. This seems like an XY Problem. If you are having trouble with Unicode characters while developing for the web, I would suggest asking your about original issue on stack overflow.
– JBis
Feb 21 at 15:11
1. Please provide a source for macOS having the font. 2. Just because macOS has it doesn't mean Safari can access it and therefore the developer can access it through CSS. 3. This seems like an XY Problem. If you are having trouble with Unicode characters while developing for the web, I would suggest asking your about original issue on stack overflow.
– JBis
Feb 21 at 15:11
Ok it does exist. /System/Library/Fonts
– JBis
Feb 21 at 15:15
Ok it does exist. /System/Library/Fonts
– JBis
Feb 21 at 15:15
add a comment |
2 Answers
2
active
oldest
votes
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
.
@TomGewecke lol. Please read my answer again I would suggest asking your about original issue. Not this issue, but whatever he is trying to debug. Which would be a code related problem, which is why I suggested SO. Also my answer actually answers the question so idk why its -1.
– JBis
Feb 21 at 15:29
thanks for the feedback @JBis - it's a data issue - me wanting to see backspace, tab, and other non printable characters visually in a web page, when they've been input from user data. And I meantfont-family
, and just mistyped it above... thanks!
– Brad Parks
Feb 21 at 15:53
@BradParks thefont-family
does work on my system is it not working on yours?
– JBis
Feb 21 at 15:55
I tried again, and it did.... I'm not sure what I was missing before... I must've mistyped something, but I actually can still see it there in my history exactly as you typed it. Maybe I forgot to "save" ? Thanks for the help!
– Brad Parks
Feb 21 at 15:58
1
@BradParks Glad I could help.
– JBis
Feb 21 at 15:59
|
show 1 more comment
I suggest you use a different font which has the actual numbers of the characters and not just symbols like Last Resort. Here is one, but it does not cover higher ranges of Unicode where many emoji are. Another which seems to cover more characters is GNU Unifont.
+1 Great find. Def better than last resort.
– JBis
Feb 21 at 15:19
I've found another font calledUnifont
which seems good for this purpose as well. More details here
– Brad Parks
Feb 21 at 15:59
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "118"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fapple.stackexchange.com%2fquestions%2f352041%2fcan-i-use-the-lastresort-font-in-a-web-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
.
@TomGewecke lol. Please read my answer again I would suggest asking your about original issue. Not this issue, but whatever he is trying to debug. Which would be a code related problem, which is why I suggested SO. Also my answer actually answers the question so idk why its -1.
– JBis
Feb 21 at 15:29
thanks for the feedback @JBis - it's a data issue - me wanting to see backspace, tab, and other non printable characters visually in a web page, when they've been input from user data. And I meantfont-family
, and just mistyped it above... thanks!
– Brad Parks
Feb 21 at 15:53
@BradParks thefont-family
does work on my system is it not working on yours?
– JBis
Feb 21 at 15:55
I tried again, and it did.... I'm not sure what I was missing before... I must've mistyped something, but I actually can still see it there in my history exactly as you typed it. Maybe I forgot to "save" ? Thanks for the help!
– Brad Parks
Feb 21 at 15:58
1
@BradParks Glad I could help.
– JBis
Feb 21 at 15:59
|
show 1 more comment
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
.
@TomGewecke lol. Please read my answer again I would suggest asking your about original issue. Not this issue, but whatever he is trying to debug. Which would be a code related problem, which is why I suggested SO. Also my answer actually answers the question so idk why its -1.
– JBis
Feb 21 at 15:29
thanks for the feedback @JBis - it's a data issue - me wanting to see backspace, tab, and other non printable characters visually in a web page, when they've been input from user data. And I meantfont-family
, and just mistyped it above... thanks!
– Brad Parks
Feb 21 at 15:53
@BradParks thefont-family
does work on my system is it not working on yours?
– JBis
Feb 21 at 15:55
I tried again, and it did.... I'm not sure what I was missing before... I must've mistyped something, but I actually can still see it there in my history exactly as you typed it. Maybe I forgot to "save" ? Thanks for the help!
– Brad Parks
Feb 21 at 15:58
1
@BradParks Glad I could help.
– JBis
Feb 21 at 15:59
|
show 1 more comment
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
.
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
.
edited Feb 21 at 16:06
answered Feb 21 at 15:23
JBisJBis
5,77631451
5,77631451
@TomGewecke lol. Please read my answer again I would suggest asking your about original issue. Not this issue, but whatever he is trying to debug. Which would be a code related problem, which is why I suggested SO. Also my answer actually answers the question so idk why its -1.
– JBis
Feb 21 at 15:29
thanks for the feedback @JBis - it's a data issue - me wanting to see backspace, tab, and other non printable characters visually in a web page, when they've been input from user data. And I meantfont-family
, and just mistyped it above... thanks!
– Brad Parks
Feb 21 at 15:53
@BradParks thefont-family
does work on my system is it not working on yours?
– JBis
Feb 21 at 15:55
I tried again, and it did.... I'm not sure what I was missing before... I must've mistyped something, but I actually can still see it there in my history exactly as you typed it. Maybe I forgot to "save" ? Thanks for the help!
– Brad Parks
Feb 21 at 15:58
1
@BradParks Glad I could help.
– JBis
Feb 21 at 15:59
|
show 1 more comment
@TomGewecke lol. Please read my answer again I would suggest asking your about original issue. Not this issue, but whatever he is trying to debug. Which would be a code related problem, which is why I suggested SO. Also my answer actually answers the question so idk why its -1.
– JBis
Feb 21 at 15:29
thanks for the feedback @JBis - it's a data issue - me wanting to see backspace, tab, and other non printable characters visually in a web page, when they've been input from user data. And I meantfont-family
, and just mistyped it above... thanks!
– Brad Parks
Feb 21 at 15:53
@BradParks thefont-family
does work on my system is it not working on yours?
– JBis
Feb 21 at 15:55
I tried again, and it did.... I'm not sure what I was missing before... I must've mistyped something, but I actually can still see it there in my history exactly as you typed it. Maybe I forgot to "save" ? Thanks for the help!
– Brad Parks
Feb 21 at 15:58
1
@BradParks Glad I could help.
– JBis
Feb 21 at 15:59
@TomGewecke lol. Please read my answer again I would suggest asking your about original issue. Not this issue, but whatever he is trying to debug. Which would be a code related problem, which is why I suggested SO. Also my answer actually answers the question so idk why its -1.
– JBis
Feb 21 at 15:29
@TomGewecke lol. Please read my answer again I would suggest asking your about original issue. Not this issue, but whatever he is trying to debug. Which would be a code related problem, which is why I suggested SO. Also my answer actually answers the question so idk why its -1.
– JBis
Feb 21 at 15:29
thanks for the feedback @JBis - it's a data issue - me wanting to see backspace, tab, and other non printable characters visually in a web page, when they've been input from user data. And I meant
font-family
, and just mistyped it above... thanks!– Brad Parks
Feb 21 at 15:53
thanks for the feedback @JBis - it's a data issue - me wanting to see backspace, tab, and other non printable characters visually in a web page, when they've been input from user data. And I meant
font-family
, and just mistyped it above... thanks!– Brad Parks
Feb 21 at 15:53
@BradParks the
font-family
does work on my system is it not working on yours?– JBis
Feb 21 at 15:55
@BradParks the
font-family
does work on my system is it not working on yours?– JBis
Feb 21 at 15:55
I tried again, and it did.... I'm not sure what I was missing before... I must've mistyped something, but I actually can still see it there in my history exactly as you typed it. Maybe I forgot to "save" ? Thanks for the help!
– Brad Parks
Feb 21 at 15:58
I tried again, and it did.... I'm not sure what I was missing before... I must've mistyped something, but I actually can still see it there in my history exactly as you typed it. Maybe I forgot to "save" ? Thanks for the help!
– Brad Parks
Feb 21 at 15:58
1
1
@BradParks Glad I could help.
– JBis
Feb 21 at 15:59
@BradParks Glad I could help.
– JBis
Feb 21 at 15:59
|
show 1 more comment
I suggest you use a different font which has the actual numbers of the characters and not just symbols like Last Resort. Here is one, but it does not cover higher ranges of Unicode where many emoji are. Another which seems to cover more characters is GNU Unifont.
+1 Great find. Def better than last resort.
– JBis
Feb 21 at 15:19
I've found another font calledUnifont
which seems good for this purpose as well. More details here
– Brad Parks
Feb 21 at 15:59
add a comment |
I suggest you use a different font which has the actual numbers of the characters and not just symbols like Last Resort. Here is one, but it does not cover higher ranges of Unicode where many emoji are. Another which seems to cover more characters is GNU Unifont.
+1 Great find. Def better than last resort.
– JBis
Feb 21 at 15:19
I've found another font calledUnifont
which seems good for this purpose as well. More details here
– Brad Parks
Feb 21 at 15:59
add a comment |
I suggest you use a different font which has the actual numbers of the characters and not just symbols like Last Resort. Here is one, but it does not cover higher ranges of Unicode where many emoji are. Another which seems to cover more characters is GNU Unifont.
I suggest you use a different font which has the actual numbers of the characters and not just symbols like Last Resort. Here is one, but it does not cover higher ranges of Unicode where many emoji are. Another which seems to cover more characters is GNU Unifont.
edited Feb 21 at 16:10
answered Feb 21 at 15:16
Tom GeweckeTom Gewecke
11.7k31933
11.7k31933
+1 Great find. Def better than last resort.
– JBis
Feb 21 at 15:19
I've found another font calledUnifont
which seems good for this purpose as well. More details here
– Brad Parks
Feb 21 at 15:59
add a comment |
+1 Great find. Def better than last resort.
– JBis
Feb 21 at 15:19
I've found another font calledUnifont
which seems good for this purpose as well. More details here
– Brad Parks
Feb 21 at 15:59
+1 Great find. Def better than last resort.
– JBis
Feb 21 at 15:19
+1 Great find. Def better than last resort.
– JBis
Feb 21 at 15:19
I've found another font called
Unifont
which seems good for this purpose as well. More details here– Brad Parks
Feb 21 at 15:59
I've found another font called
Unifont
which seems good for this purpose as well. More details here– Brad Parks
Feb 21 at 15:59
add a comment |
Thanks for contributing an answer to Ask Different!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fapple.stackexchange.com%2fquestions%2f352041%2fcan-i-use-the-lastresort-font-in-a-web-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1. Please provide a source for macOS having the font. 2. Just because macOS has it doesn't mean Safari can access it and therefore the developer can access it through CSS. 3. This seems like an XY Problem. If you are having trouble with Unicode characters while developing for the web, I would suggest asking your about original issue on stack overflow.
– JBis
Feb 21 at 15:11
Ok it does exist. /System/Library/Fonts
– JBis
Feb 21 at 15:15