What's the differences between different types of utf-8?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
There is a problem with skype on linux. If I change my locale setting to en_US.utf-8, Chinese characters are poorly rendered (some are bold, some are not). If I change my locale setting to zh_CN.utf-8, both English and Chinese are rendered properly. Font settings are the same.
Here is my questions:
Q1: What's the differences between different types of UTF-8 charset in linux locale setting?
Q2: How can it affect the display of certain language?
linux fonts utf-8 charset
add a comment |
There is a problem with skype on linux. If I change my locale setting to en_US.utf-8, Chinese characters are poorly rendered (some are bold, some are not). If I change my locale setting to zh_CN.utf-8, both English and Chinese are rendered properly. Font settings are the same.
Here is my questions:
Q1: What's the differences between different types of UTF-8 charset in linux locale setting?
Q2: How can it affect the display of certain language?
linux fonts utf-8 charset
I've gotten the feeling that there is something, but as a monolinguistic English speaker, I can only go so far as to say I'm pretty sure you're on to something.
– Ed Grimm
Jan 30 at 6:11
add a comment |
There is a problem with skype on linux. If I change my locale setting to en_US.utf-8, Chinese characters are poorly rendered (some are bold, some are not). If I change my locale setting to zh_CN.utf-8, both English and Chinese are rendered properly. Font settings are the same.
Here is my questions:
Q1: What's the differences between different types of UTF-8 charset in linux locale setting?
Q2: How can it affect the display of certain language?
linux fonts utf-8 charset
There is a problem with skype on linux. If I change my locale setting to en_US.utf-8, Chinese characters are poorly rendered (some are bold, some are not). If I change my locale setting to zh_CN.utf-8, both English and Chinese are rendered properly. Font settings are the same.
Here is my questions:
Q1: What's the differences between different types of UTF-8 charset in linux locale setting?
Q2: How can it affect the display of certain language?
linux fonts utf-8 charset
linux fonts utf-8 charset
asked Jan 30 at 5:46
user762750user762750
276
276
I've gotten the feeling that there is something, but as a monolinguistic English speaker, I can only go so far as to say I'm pretty sure you're on to something.
– Ed Grimm
Jan 30 at 6:11
add a comment |
I've gotten the feeling that there is something, but as a monolinguistic English speaker, I can only go so far as to say I'm pretty sure you're on to something.
– Ed Grimm
Jan 30 at 6:11
I've gotten the feeling that there is something, but as a monolinguistic English speaker, I can only go so far as to say I'm pretty sure you're on to something.
– Ed Grimm
Jan 30 at 6:11
I've gotten the feeling that there is something, but as a monolinguistic English speaker, I can only go so far as to say I'm pretty sure you're on to something.
– Ed Grimm
Jan 30 at 6:11
add a comment |
1 Answer
1
active
oldest
votes
Q1: What's the differences between different types of UTF-8 charset in linux locale setting?
Absolutely none. The difference is not caused by the charset.
Q2: How can it affect the display of certain language?
Fontconfig, the Linux fonts configuration system, uses your system locale's "language" and "territory" as a hint when choosing the best font for a particular character. (For example, on my system, it picks either "IPAMincho" or "Source Han Sans" depending on the locale. I think it doesn't help that the former is actually tagged with "lang=en" in its own metadata despite not being made for English text.)
AFAIK, this is necessary because the glyphs themselves don't provide enough information about which language they're in, and (due to Unicode's "Han Unification") can provide different renderings for the same glyph.
You can set the FC_LANG="zh_CN"
environment variable to provide a different locale hint specifically for Fontconfig without changing the global locale.
You can also set LC_CTYPE="zh_CN.UTF-8"
for the same effect; this might fit better into the system's locale configuration files. (Normally the language_territory part of $LC_CTYPE isn't used for anything, so fontconfig repurposes it.)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fsuperuser.com%2fquestions%2f1399946%2fwhats-the-differences-between-different-types-of-utf-8%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Q1: What's the differences between different types of UTF-8 charset in linux locale setting?
Absolutely none. The difference is not caused by the charset.
Q2: How can it affect the display of certain language?
Fontconfig, the Linux fonts configuration system, uses your system locale's "language" and "territory" as a hint when choosing the best font for a particular character. (For example, on my system, it picks either "IPAMincho" or "Source Han Sans" depending on the locale. I think it doesn't help that the former is actually tagged with "lang=en" in its own metadata despite not being made for English text.)
AFAIK, this is necessary because the glyphs themselves don't provide enough information about which language they're in, and (due to Unicode's "Han Unification") can provide different renderings for the same glyph.
You can set the FC_LANG="zh_CN"
environment variable to provide a different locale hint specifically for Fontconfig without changing the global locale.
You can also set LC_CTYPE="zh_CN.UTF-8"
for the same effect; this might fit better into the system's locale configuration files. (Normally the language_territory part of $LC_CTYPE isn't used for anything, so fontconfig repurposes it.)
add a comment |
Q1: What's the differences between different types of UTF-8 charset in linux locale setting?
Absolutely none. The difference is not caused by the charset.
Q2: How can it affect the display of certain language?
Fontconfig, the Linux fonts configuration system, uses your system locale's "language" and "territory" as a hint when choosing the best font for a particular character. (For example, on my system, it picks either "IPAMincho" or "Source Han Sans" depending on the locale. I think it doesn't help that the former is actually tagged with "lang=en" in its own metadata despite not being made for English text.)
AFAIK, this is necessary because the glyphs themselves don't provide enough information about which language they're in, and (due to Unicode's "Han Unification") can provide different renderings for the same glyph.
You can set the FC_LANG="zh_CN"
environment variable to provide a different locale hint specifically for Fontconfig without changing the global locale.
You can also set LC_CTYPE="zh_CN.UTF-8"
for the same effect; this might fit better into the system's locale configuration files. (Normally the language_territory part of $LC_CTYPE isn't used for anything, so fontconfig repurposes it.)
add a comment |
Q1: What's the differences between different types of UTF-8 charset in linux locale setting?
Absolutely none. The difference is not caused by the charset.
Q2: How can it affect the display of certain language?
Fontconfig, the Linux fonts configuration system, uses your system locale's "language" and "territory" as a hint when choosing the best font for a particular character. (For example, on my system, it picks either "IPAMincho" or "Source Han Sans" depending on the locale. I think it doesn't help that the former is actually tagged with "lang=en" in its own metadata despite not being made for English text.)
AFAIK, this is necessary because the glyphs themselves don't provide enough information about which language they're in, and (due to Unicode's "Han Unification") can provide different renderings for the same glyph.
You can set the FC_LANG="zh_CN"
environment variable to provide a different locale hint specifically for Fontconfig without changing the global locale.
You can also set LC_CTYPE="zh_CN.UTF-8"
for the same effect; this might fit better into the system's locale configuration files. (Normally the language_territory part of $LC_CTYPE isn't used for anything, so fontconfig repurposes it.)
Q1: What's the differences between different types of UTF-8 charset in linux locale setting?
Absolutely none. The difference is not caused by the charset.
Q2: How can it affect the display of certain language?
Fontconfig, the Linux fonts configuration system, uses your system locale's "language" and "territory" as a hint when choosing the best font for a particular character. (For example, on my system, it picks either "IPAMincho" or "Source Han Sans" depending on the locale. I think it doesn't help that the former is actually tagged with "lang=en" in its own metadata despite not being made for English text.)
AFAIK, this is necessary because the glyphs themselves don't provide enough information about which language they're in, and (due to Unicode's "Han Unification") can provide different renderings for the same glyph.
You can set the FC_LANG="zh_CN"
environment variable to provide a different locale hint specifically for Fontconfig without changing the global locale.
You can also set LC_CTYPE="zh_CN.UTF-8"
for the same effect; this might fit better into the system's locale configuration files. (Normally the language_territory part of $LC_CTYPE isn't used for anything, so fontconfig repurposes it.)
edited Jan 30 at 6:23
answered Jan 30 at 6:13
grawitygrawity
244k37515576
244k37515576
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1399946%2fwhats-the-differences-between-different-types-of-utf-8%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
I've gotten the feeling that there is something, but as a monolinguistic English speaker, I can only go so far as to say I'm pretty sure you're on to something.
– Ed Grimm
Jan 30 at 6:11