Write a Unicode scribal character in an HTML page (with Junicode)? -
Write a Unicode scribal character in an HTML page (with Junicode)? -
this simple question, 1 lot of googling has not found reply to!
i display unicode character latin extended-d set on web page (pdf description of extended-d), using junicode, supports extended-d.
the code display "a760 latin capital letter vy".
this page in full:
<!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>
and stylesheet looks like:
@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; }
i have checked , junicode beingness loaded correctly. while first unicode character displays correctly ῦ, sec character see literal &#a760
on page.
how can indicate should displayed unicode extended-d character a760?
i think have alter hexadecimal:
Ꝡ
html unicode character-encoding fonts webfonts
Comments
Post a Comment