fork download
  1. using System;
  2. using System.IO;
  3. using System.Xml;
  4.  
  5. class X{
  6. public static void Main(){
  7.  
  8. String str = (new StreamReader(System.Console.OpenStandardInput(),System.Text.Encoding.UTF8)).ReadLine();
  9. XmlDocument doc = new XmlDocument();
  10. XmlDocumentType doctype = doc.CreateDocumentType("html","-//W3C//DTD XHTML 1.0 Strict//EN","http://w...content-available-to-author-only...3.org/TR/xhtml1/DTD/xhtml1-strict.dtd",null);
  11. XmlElement html = doc.CreateElement("html","http://w...content-available-to-author-only...3.org/1999/xhtml");
  12. XmlElement head = doc.CreateElement("head","http://w...content-available-to-author-only...3.org/1999/xhtml");
  13. XmlElement title = doc.CreateElement("title","http://w...content-available-to-author-only...3.org/1999/xhtml");
  14. title.AppendChild(doc.CreateTextNode("test"));
  15.  
  16. XmlElement body = doc.CreateElement("body","http://w...content-available-to-author-only...3.org/1999/xhtml");
  17.  
  18. XmlElement table = doc.CreateElement("table","http://w...content-available-to-author-only...3.org/1999/xhtml");
  19. doc.AppendChild(doctype);
  20. doc.AppendChild(html);
  21. html.AppendChild(head);
  22. head.AppendChild(title);
  23. html.AppendChild(body);
  24. body.AppendChild(table);
  25.  
  26. foreach(char c in str.ToCharArray()){
  27. XmlElement tr = doc.CreateElement("tr","http://w...content-available-to-author-only...3.org/1999/xhtml");
  28. XmlElement td1 = doc.CreateElement("td","http://w...content-available-to-author-only...3.org/1999/xhtml");
  29. td1.AppendChild(doc.CreateTextNode(c.ToString()));
  30.  
  31. XmlElement td2 = doc.CreateElement("td","http://w...content-available-to-author-only...3.org/1999/xhtml");
  32. XmlElement img = doc.CreateElement("img","http://w...content-available-to-author-only...3.org/1999/xhtml");
  33. // [2011-04-17]added s paramter
  34. img.SetAttribute("src","http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=" + Char.ConvertToUtf32(c.ToString(),0).ToString("x") + "&s=1.84" );
  35. img.SetAttribute("width",200.ToString());
  36. img.SetAttribute("height",200.ToString());
  37. img.SetAttribute("alt","U+" + Char.ConvertToUtf32(c.ToString(),0).ToString("x"));
  38. td2.AppendChild(img);
  39.  
  40. tr.AppendChild(td1);
  41. tr.AppendChild(td2);
  42. table.AppendChild(tr);
  43. }
  44. doc.Save(System.Console.OpenStandardOutput());
  45. }
  46. }
  47.  
  48. //[Added:2011-04-20]
  49. //http://k...content-available-to-author-only...q.org/about.html
  50.  
  51. //Can I get a set of stroke order diagrams?
  52. //書き順の図を入手する事はできますか?
  53.  
  54. //Yes, the stroke order diagrams are based on the graphics of the KanjiVG project, so you can download them from their website. The KanjiVG data is licensed under a Creative Commons licence - please see their web site for details.
  55.  
  56. //はい。書き順の図は、KanjiVGプロジェクトの画像を基にしており、それらを彼らのページからダウンロードできます。
  57. //KanjiVGのデータはクリエイティブ・コモンズのライセンスで提供されています。詳しくは彼らのサイトでご確認ください。
  58.  
  59. //If you want a set of PNG diagrams like the ones on my site, please ask me by email or at the discussion group and I can make a full set of diagrams and put them on some upload server for you.
  60.  
  61. //もし、私のサイトにあるようなPNGの図のセットが欲しいと思ったなら、メールもしくはディスカッショングループで私に頼んでください。そしたら、私は、あなたのために、図のフルセットを作って、どっかのアップローダーにそれらをおいておきます。
  62.  
  63. //Note that a 300x300 set of PNGs of 6000 or so kanjis is over 100 megabytes of incompressible data, so whatever you do, don't try to automatically download them from the server using a script.
  64.  
  65. //300ピクセル四方のPNG画像6000枚は圧縮できないデータ100MB以上になることに注意してください。だから、もしあなたが欲しいと思っても、スクリプトを利用してサーバから自動的にダウンロードしようとしないでください。
  66.  
  67. //About once a week or so, someone starts a script to download every single possible character, sometimes at multiple different resolutions, and launches it at the website.
  68.  
  69. //一週間くらい前、ある人(訳注:つまり俺)が、可能な単独文字すべてを時には複数の解像度でダウンロードするスクリプトを開始し、このサイトに向けて実行しました。
  70.  
  71. //Because the PNG images are quite large, and because there are so many of them, this creates a very significant spike in bandwidth usage.
  72.  
  73. //PNGのデータはとても大きく、また画像も非常に多かったため、これは帯域使用量を非常に上昇させました。
  74.  
  75. //Consequently I've had to put a throttler in place to prevent this happening any more.
  76.  
  77. //結果として私はこれがもう起こらないように、スロットル[流体の流れる量を制御する弁]を設置しなければなりませんでした。
  78.  
  79. //If you try to automatically download multiple images from the site, you'll be automatically blocked after reaching a certain limit.
  80.  
  81. //あなたがサイトから自動的に複数の画像をダウンロードしようとすると、特定の制限値に達した後自動的にブロックされます。
  82.  
  83. //So please just ask me on the discussion forum and I'll make the images for you and send them offline.
  84.  
  85. //というわけで、ディスカッションフォーラムで私に問い合わせてください。私はあなたのために画像を作ってオフラインで送りますから。
  86.  
  87. //And I request you to please ask yourself why you need thousands of images of characters which are unknown to the majority of Japanese people. This website isn't going anywhere, so why not just download and keep the images as you learn them?
  88.  
  89. //加えて、日本人の大半が知らないような文字の画像数千枚をどうしてあなたが必要としているのかをあなたが自分自身に問うてみるよう、私はお願い申し上げます。このサイトはどこにも逃げません。その漢字を習ったときそのときにに画像をダウンロードしてとっておけばいいではありませんか。
  90.  
  91. //Although the kanji stroke diagrams are made by my software, they are based on the KanjiVG data, so as derivative works they are under the same "Creative Commons" licence as KanjiVG. Thus, when you download images from my website you are perfectly free to, for example, put them on your own website.
  92.  
  93. //この書き順の図は私のソフトにより作られましたが、これらはKanjiVGのデータに基づいています。よって、KanjiVGと同じく、派生物としてこれらはクリエイティブ・コモンズのライセンスに従います。よって、私のサイトから、ダウンロードした画像を、例えばあなたが自分のサイトにおいたりするのは自由です。
  94.  
Success #stdin #stdout 0.11s 44520KB
stdin
一右雨円王音下火花貝学気九休玉金空月犬見五口校左三山子四糸字耳七車手十出女小上森人水正生青夕石赤千川先早草足村大男竹中虫町天田土二日入年白八百文木本名目立力林六
stdout
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://w...content-available-to-author-only...3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://w...content-available-to-author-only...3.org/1999/xhtml">
  <head>
    <title>test</title>
  </head>
  <body>
    <table>
      <tr>
        <td>一</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4e00&amp;s=1.84" width="200" height="200" alt="U+4e00" />
        </td>
      </tr>
      <tr>
        <td>右</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=53f3&amp;s=1.84" width="200" height="200" alt="U+53f3" />
        </td>
      </tr>
      <tr>
        <td>雨</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=96e8&amp;s=1.84" width="200" height="200" alt="U+96e8" />
        </td>
      </tr>
      <tr>
        <td>円</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5186&amp;s=1.84" width="200" height="200" alt="U+5186" />
        </td>
      </tr>
      <tr>
        <td>王</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=738b&amp;s=1.84" width="200" height="200" alt="U+738b" />
        </td>
      </tr>
      <tr>
        <td>音</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=97f3&amp;s=1.84" width="200" height="200" alt="U+97f3" />
        </td>
      </tr>
      <tr>
        <td>下</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4e0b&amp;s=1.84" width="200" height="200" alt="U+4e0b" />
        </td>
      </tr>
      <tr>
        <td>火</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=706b&amp;s=1.84" width="200" height="200" alt="U+706b" />
        </td>
      </tr>
      <tr>
        <td>花</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=82b1&amp;s=1.84" width="200" height="200" alt="U+82b1" />
        </td>
      </tr>
      <tr>
        <td>貝</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=8c9d&amp;s=1.84" width="200" height="200" alt="U+8c9d" />
        </td>
      </tr>
      <tr>
        <td>学</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5b66&amp;s=1.84" width="200" height="200" alt="U+5b66" />
        </td>
      </tr>
      <tr>
        <td>気</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=6c17&amp;s=1.84" width="200" height="200" alt="U+6c17" />
        </td>
      </tr>
      <tr>
        <td>九</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4e5d&amp;s=1.84" width="200" height="200" alt="U+4e5d" />
        </td>
      </tr>
      <tr>
        <td>休</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4f11&amp;s=1.84" width="200" height="200" alt="U+4f11" />
        </td>
      </tr>
      <tr>
        <td>玉</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=7389&amp;s=1.84" width="200" height="200" alt="U+7389" />
        </td>
      </tr>
      <tr>
        <td>金</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=91d1&amp;s=1.84" width="200" height="200" alt="U+91d1" />
        </td>
      </tr>
      <tr>
        <td>空</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=7a7a&amp;s=1.84" width="200" height="200" alt="U+7a7a" />
        </td>
      </tr>
      <tr>
        <td>月</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=6708&amp;s=1.84" width="200" height="200" alt="U+6708" />
        </td>
      </tr>
      <tr>
        <td>犬</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=72ac&amp;s=1.84" width="200" height="200" alt="U+72ac" />
        </td>
      </tr>
      <tr>
        <td>見</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=898b&amp;s=1.84" width="200" height="200" alt="U+898b" />
        </td>
      </tr>
      <tr>
        <td>五</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4e94&amp;s=1.84" width="200" height="200" alt="U+4e94" />
        </td>
      </tr>
      <tr>
        <td>口</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=53e3&amp;s=1.84" width="200" height="200" alt="U+53e3" />
        </td>
      </tr>
      <tr>
        <td>校</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=6821&amp;s=1.84" width="200" height="200" alt="U+6821" />
        </td>
      </tr>
      <tr>
        <td>左</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5de6&amp;s=1.84" width="200" height="200" alt="U+5de6" />
        </td>
      </tr>
      <tr>
        <td>三</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4e09&amp;s=1.84" width="200" height="200" alt="U+4e09" />
        </td>
      </tr>
      <tr>
        <td>山</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5c71&amp;s=1.84" width="200" height="200" alt="U+5c71" />
        </td>
      </tr>
      <tr>
        <td>子</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5b50&amp;s=1.84" width="200" height="200" alt="U+5b50" />
        </td>
      </tr>
      <tr>
        <td>四</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=56db&amp;s=1.84" width="200" height="200" alt="U+56db" />
        </td>
      </tr>
      <tr>
        <td>糸</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=7cf8&amp;s=1.84" width="200" height="200" alt="U+7cf8" />
        </td>
      </tr>
      <tr>
        <td>字</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5b57&amp;s=1.84" width="200" height="200" alt="U+5b57" />
        </td>
      </tr>
      <tr>
        <td>耳</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=8033&amp;s=1.84" width="200" height="200" alt="U+8033" />
        </td>
      </tr>
      <tr>
        <td>七</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4e03&amp;s=1.84" width="200" height="200" alt="U+4e03" />
        </td>
      </tr>
      <tr>
        <td>車</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=8eca&amp;s=1.84" width="200" height="200" alt="U+8eca" />
        </td>
      </tr>
      <tr>
        <td>手</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=624b&amp;s=1.84" width="200" height="200" alt="U+624b" />
        </td>
      </tr>
      <tr>
        <td>十</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5341&amp;s=1.84" width="200" height="200" alt="U+5341" />
        </td>
      </tr>
      <tr>
        <td>出</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=51fa&amp;s=1.84" width="200" height="200" alt="U+51fa" />
        </td>
      </tr>
      <tr>
        <td>女</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5973&amp;s=1.84" width="200" height="200" alt="U+5973" />
        </td>
      </tr>
      <tr>
        <td>小</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5c0f&amp;s=1.84" width="200" height="200" alt="U+5c0f" />
        </td>
      </tr>
      <tr>
        <td>上</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4e0a&amp;s=1.84" width="200" height="200" alt="U+4e0a" />
        </td>
      </tr>
      <tr>
        <td>森</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=68ee&amp;s=1.84" width="200" height="200" alt="U+68ee" />
        </td>
      </tr>
      <tr>
        <td>人</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4eba&amp;s=1.84" width="200" height="200" alt="U+4eba" />
        </td>
      </tr>
      <tr>
        <td>水</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=6c34&amp;s=1.84" width="200" height="200" alt="U+6c34" />
        </td>
      </tr>
      <tr>
        <td>正</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=6b63&amp;s=1.84" width="200" height="200" alt="U+6b63" />
        </td>
      </tr>
      <tr>
        <td>生</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=751f&amp;s=1.84" width="200" height="200" alt="U+751f" />
        </td>
      </tr>
      <tr>
        <td>青</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=9752&amp;s=1.84" width="200" height="200" alt="U+9752" />
        </td>
      </tr>
      <tr>
        <td>夕</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5915&amp;s=1.84" width="200" height="200" alt="U+5915" />
        </td>
      </tr>
      <tr>
        <td>石</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=77f3&amp;s=1.84" width="200" height="200" alt="U+77f3" />
        </td>
      </tr>
      <tr>
        <td>赤</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=8d64&amp;s=1.84" width="200" height="200" alt="U+8d64" />
        </td>
      </tr>
      <tr>
        <td>千</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5343&amp;s=1.84" width="200" height="200" alt="U+5343" />
        </td>
      </tr>
      <tr>
        <td>川</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5ddd&amp;s=1.84" width="200" height="200" alt="U+5ddd" />
        </td>
      </tr>
      <tr>
        <td>先</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5148&amp;s=1.84" width="200" height="200" alt="U+5148" />
        </td>
      </tr>
      <tr>
        <td>早</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=65e9&amp;s=1.84" width="200" height="200" alt="U+65e9" />
        </td>
      </tr>
      <tr>
        <td>草</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=8349&amp;s=1.84" width="200" height="200" alt="U+8349" />
        </td>
      </tr>
      <tr>
        <td>足</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=8db3&amp;s=1.84" width="200" height="200" alt="U+8db3" />
        </td>
      </tr>
      <tr>
        <td>村</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=6751&amp;s=1.84" width="200" height="200" alt="U+6751" />
        </td>
      </tr>
      <tr>
        <td>大</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5927&amp;s=1.84" width="200" height="200" alt="U+5927" />
        </td>
      </tr>
      <tr>
        <td>男</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=7537&amp;s=1.84" width="200" height="200" alt="U+7537" />
        </td>
      </tr>
      <tr>
        <td>竹</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=7af9&amp;s=1.84" width="200" height="200" alt="U+7af9" />
        </td>
      </tr>
      <tr>
        <td>中</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4e2d&amp;s=1.84" width="200" height="200" alt="U+4e2d" />
        </td>
      </tr>
      <tr>
        <td>虫</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=866b&amp;s=1.84" width="200" height="200" alt="U+866b" />
        </td>
      </tr>
      <tr>
        <td>町</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=753a&amp;s=1.84" width="200" height="200" alt="U+753a" />
        </td>
      </tr>
      <tr>
        <td>天</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5929&amp;s=1.84" width="200" height="200" alt="U+5929" />
        </td>
      </tr>
      <tr>
        <td>田</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=7530&amp;s=1.84" width="200" height="200" alt="U+7530" />
        </td>
      </tr>
      <tr>
        <td>土</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=571f&amp;s=1.84" width="200" height="200" alt="U+571f" />
        </td>
      </tr>
      <tr>
        <td>二</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=4e8c&amp;s=1.84" width="200" height="200" alt="U+4e8c" />
        </td>
      </tr>
      <tr>
        <td>日</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=65e5&amp;s=1.84" width="200" height="200" alt="U+65e5" />
        </td>
      </tr>
      <tr>
        <td>入</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5165&amp;s=1.84" width="200" height="200" alt="U+5165" />
        </td>
      </tr>
      <tr>
        <td>年</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=5e74&amp;s=1.84" width="200" height="200" alt="U+5e74" />
        </td>
      </tr>
      <tr>
        <td>白</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=767d&amp;s=1.84" width="200" height="200" alt="U+767d" />
        </td>
      </tr>
      <tr>
        <td>八</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=516b&amp;s=1.84" width="200" height="200" alt="U+516b" />
        </td>
      </tr>
      <tr>
        <td>百</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=767e&amp;s=1.84" width="200" height="200" alt="U+767e" />
        </td>
      </tr>
      <tr>
        <td>文</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=6587&amp;s=1.84" width="200" height="200" alt="U+6587" />
        </td>
      </tr>
      <tr>
        <td>木</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=6728&amp;s=1.84" width="200" height="200" alt="U+6728" />
        </td>
      </tr>
      <tr>
        <td>本</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=672c&amp;s=1.84" width="200" height="200" alt="U+672c" />
        </td>
      </tr>
      <tr>
        <td>名</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=540d&amp;s=1.84" width="200" height="200" alt="U+540d" />
        </td>
      </tr>
      <tr>
        <td>目</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=76ee&amp;s=1.84" width="200" height="200" alt="U+76ee" />
        </td>
      </tr>
      <tr>
        <td>立</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=7acb&amp;s=1.84" width="200" height="200" alt="U+7acb" />
        </td>
      </tr>
      <tr>
        <td>力</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=529b&amp;s=1.84" width="200" height="200" alt="U+529b" />
        </td>
      </tr>
      <tr>
        <td>林</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=6797&amp;s=1.84" width="200" height="200" alt="U+6797" />
        </td>
      </tr>
      <tr>
        <td>六</td>
        <td>
          <img src="http://k...content-available-to-author-only...q.org/kanjivg/memory.cgi?c=516d&amp;s=1.84" width="200" height="200" alt="U+516d" />
        </td>
      </tr>
    </table>
  </body>
</html>