Can I use the LastResort font in a web page?
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
10 hours ago
Ok it does exist. /System/Library/Fonts
– JBis
10 hours ago
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 9 hours ago
Brad Parks
asked 10 hours ago
Brad ParksBrad Parks
1,2841115
1,2841115
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
10 hours ago
Ok it does exist. /System/Library/Fonts
– JBis
10 hours ago
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
10 hours ago
Ok it does exist. /System/Library/Fonts
– JBis
10 hours ago
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
10 hours ago
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
10 hours ago
Ok it does exist. /System/Library/Fonts
– JBis
10 hours ago
Ok it does exist. /System/Library/Fonts
– JBis
10 hours ago
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
9 hours ago
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
9 hours ago
@BradParks thefont-familydoes work on my system is it not working on yours?
– JBis
9 hours ago
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
9 hours ago
1
@BradParks Glad I could help.
– JBis
9 hours ago
|
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
10 hours ago
I've found another font calledUnifontwhich seems good for this purpose as well. More details here
– Brad Parks
9 hours ago
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
9 hours ago
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
9 hours ago
@BradParks thefont-familydoes work on my system is it not working on yours?
– JBis
9 hours ago
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
9 hours ago
1
@BradParks Glad I could help.
– JBis
9 hours ago
|
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
9 hours ago
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
9 hours ago
@BradParks thefont-familydoes work on my system is it not working on yours?
– JBis
9 hours ago
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
9 hours ago
1
@BradParks Glad I could help.
– JBis
9 hours ago
|
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 9 hours ago
answered 10 hours ago
JBisJBis
5,72131450
5,72131450
@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
9 hours ago
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
9 hours ago
@BradParks thefont-familydoes work on my system is it not working on yours?
– JBis
9 hours ago
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
9 hours ago
1
@BradParks Glad I could help.
– JBis
9 hours ago
|
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
9 hours ago
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
9 hours ago
@BradParks thefont-familydoes work on my system is it not working on yours?
– JBis
9 hours ago
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
9 hours ago
1
@BradParks Glad I could help.
– JBis
9 hours ago
@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
9 hours ago
@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
9 hours ago
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
9 hours ago
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
9 hours ago
@BradParks the
font-family does work on my system is it not working on yours?– JBis
9 hours ago
@BradParks the
font-family does work on my system is it not working on yours?– JBis
9 hours ago
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
9 hours ago
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
9 hours ago
1
1
@BradParks Glad I could help.
– JBis
9 hours ago
@BradParks Glad I could help.
– JBis
9 hours ago
|
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
10 hours ago
I've found another font calledUnifontwhich seems good for this purpose as well. More details here
– Brad Parks
9 hours ago
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
10 hours ago
I've found another font calledUnifontwhich seems good for this purpose as well. More details here
– Brad Parks
9 hours ago
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 9 hours ago
answered 10 hours ago
Tom GeweckeTom Gewecke
11.4k31933
11.4k31933
+1 Great find. Def better than last resort.
– JBis
10 hours ago
I've found another font calledUnifontwhich seems good for this purpose as well. More details here
– Brad Parks
9 hours ago
add a comment |
+1 Great find. Def better than last resort.
– JBis
10 hours ago
I've found another font calledUnifontwhich seems good for this purpose as well. More details here
– Brad Parks
9 hours ago
+1 Great find. Def better than last resort.
– JBis
10 hours ago
+1 Great find. Def better than last resort.
– JBis
10 hours ago
I've found another font called
Unifont which seems good for this purpose as well. More details here– Brad Parks
9 hours ago
I've found another font called
Unifont which seems good for this purpose as well. More details here– Brad Parks
9 hours ago
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
10 hours ago
Ok it does exist. /System/Library/Fonts
– JBis
10 hours ago