Skip to content

Instantly share code, notes, and snippets.

@hakanai
Created August 26, 2019 06:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hakanai/5f040552cc5a2b086afac99eb5166747 to your computer and use it in GitHub Desktop.
Save hakanai/5f040552cc5a2b086afac99eb5166747 to your computer and use it in GitHub Desktop.
Quick test of differing renderings of the same Unicode character based on the language being rendered.
<html>
<head>
<title>Han Unification Test</title>
<style type="text/css">
* { font-family: 'Noto Serif CJK JP'; }
</style>
</head>
<body>
<ul>
<li>zh-CN: <span lang="zh-CN">次</span></li>
<li>zh-TW: <span lang="zh-TW">次</span></li>
<li>ko: <span lang="ko">次</span></li>
<li>ja: <span lang="ja">次</span></li>
<li>vi: <span lang="vi">次</span></li>
<li>unspecified: 次</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment