KendoScore TrueType Fonts
KendoScore Fonts is a light weight TrueType font for displaying Kendo scores. I created a free font for showing and printing Kendo score information. It includes fonts related to Kendo score only, and is only 8KB.
You can use it for free.
Sample
Marks | UTF-16 code in hex | HTML Entity Encoding | Matters |
---|---|---|---|
1 | 0x0031 | 1 | Ippon-gachi |
C | 0x0043 | C | Victory by Chusen |
D | 0x0044 | D | Do |
E | 0x0045 | E | Encho |
H | 0x0048 | H | 2nd Hansoku |
K | 0x004b | K | Kote |
M | 0x004d | M | Men |
T | 0x0054 | T | Tsuki |
h | 0x0068 | h | Victory by Hantei |
× | 0x00d7 | × | Hikiwake |
▲ | 0x25b2 | ▲ | Hansoku |
○ | 0x25cb | ○ | Fusen-gachi, Kiken or Shiai-funo |
コ | 0x30b3 | コ | Kote (In Japanese) |
ツ | 0x30c4 | ツ | Tsuki (In Japanese) |
ド | 0x30c9 | ド | Do (In Japanese) |
メ | 0x30e1 | メ | Men (In Japanese) |
判 | 0x5224 | 判 | Victory by Hantei (In Japanese) |
反 | 0x53cd | 反 | 2nd Hansoku (In Japanese) |
抽 | 0x62bd | 抽 | Victory by Chusen (In Japanese) |
0x0044 to 0x0054 is same as ascii characters. For example, 0x0044 is the letter 'D'.
KendoScore.ttf License
The KendoScore fonts are a font family based on the IPA Mincho fonts. The IPA Font Licence Agreement v1.0 requires derived program to be licenced under the same agreement. Thus, KendoScore Font is also licensed under the same agreement.
Using KendoScore.ttf as Web fonts
You can use @font-face of CSS3 to show fonts saved in the Web server. By doing so, user side web browsers will show those fonts, even if it is not installed in the user PC.
The following HTML code is a sample for using KendoScore.ttf. KendoScore.ttf includes both english and japanese characters.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
<!--
@font-face {
font-family:kendoscore;
src: url(KendoScore.ttf);
}
.kendoscore {
font-family:kendoscore;
}
-->
</style>
</head>
<body>
<p class="kendoscore">DHKMT</p>
<p class="kendoscore">▲ ○ コ ツ</p>
</body>
</html>
Hope you like it !
KendoScore.ttf by Akimichi Ogawa. Akimichi Ogawa is a member of All Japan Kendo Federation IT team.