これは非常に単純な質問であることを願っていますが、多くのグーグルが答えを見つけられていません!
Extended-DをサポートするJunicodeを使用して、Latin Extended-D セットの Unicode 文字を Web ページ ( Extended-D の PDF 説明)に表示したいと考えています。
表示したいコードは「A760 LATIN CAPITAL LETTER VY」です。
これは私のページの全文です:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Font Experiments</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body id="home">
ῦ
&#A760;
</body></html>
そして、これは私のスタイルシートがどのように見えるかです:
@font-face {
font-family: 'Junicode';
src: url('../fonts/junicode-regular-webfont.eot');
src: url('../fonts/junicode-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/Junicode.woff') format('woff'),
url('../fonts/Junicode.ttf') format('truetype'),
url('../fonts/junicode-regular-webfont.svg#JunicodeRegular') format('svg');
font-weight: normal;
font-style: normal;
}
body {
font-family: junicode, gentium, caslon roman, serif;
}
確認したところ、Junicode が正しく読み込まれています。しかし、最初の Unicode 文字は ῦ として正しく表示されますが、2 番目の文字&#A760
はページにリテラルしか表示されません。
これを Unicode 拡張 D 文字 A760 として表示する必要があることをどのように示すことができますか?