entity_and_numeric_character_references.unit 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. >>> Entity and numeric character references - 321
  2.   & © Æ Ď
  3. ¾ ℋ ⅆ
  4. ∲ ≧̸
  5. <<<
  6. <p>&amp; © Æ Ď
  7. ¾ ℋ ⅆ
  8. ∲ ≧̸</p>
  9. >>> Entity and numeric character references - 322
  10. &#35; &#1234; &#992; &#0;
  11. <<<
  12. <p># Ӓ Ϡ �</p>
  13. >>> Entity and numeric character references - 323
  14. &#X22; &#XD06; &#xcab;
  15. <<<
  16. <p>&quot; ആ ಫ</p>
  17. >>> Entity and numeric character references - 324
  18. &nbsp &x; &#; &#x;
  19. &#987654321;
  20. &#abcdef0;
  21. &ThisIsNotDefined; &hi?;
  22. <<<
  23. <p>&amp;nbsp &amp;x; &amp;#; &amp;#x;
  24. &amp;#987654321;
  25. &amp;#abcdef0;
  26. &amp;ThisIsNotDefined; &amp;hi?;</p>
  27. >>> Entity and numeric character references - 325
  28. &copy
  29. <<<
  30. <p>&amp;copy</p>
  31. >>> Entity and numeric character references - 326
  32. &MadeUpEntity;
  33. <<<
  34. <p>&amp;MadeUpEntity;</p>
  35. >>> Entity and numeric character references - 327
  36. <a href="&ouml;&ouml;.html">
  37. <<<
  38. <a href="&ouml;&ouml;.html">
  39. >>> Entity and numeric character references - 328
  40. [foo](/f&ouml;&ouml; "f&ouml;&ouml;")
  41. <<<
  42. <p><a href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
  43. >>> Entity and numeric character references - 329
  44. [foo]
  45. [foo]: /f&ouml;&ouml; "f&ouml;&ouml;"
  46. <<<
  47. <p><a href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
  48. >>> Entity and numeric character references - 330
  49. ``` f&ouml;&ouml;
  50. foo
  51. ```
  52. <<<
  53. <pre><code class="language-föö">foo
  54. </code></pre>
  55. >>> Entity and numeric character references - 331
  56. `f&ouml;&ouml;`
  57. <<<
  58. <p><code>f&amp;ouml;&amp;ouml;</code></p>
  59. >>> Entity and numeric character references - 332
  60. f&ouml;f&ouml;
  61. <<<
  62. <pre><code>f&amp;ouml;f&amp;ouml;
  63. </code></pre>
  64. >>> Entity and numeric character references - 333
  65. &#42;foo&#42;
  66. *foo*
  67. <<<
  68. <p>*foo*
  69. <em>foo</em></p>
  70. >>> Entity and numeric character references - 334
  71. &#42; foo
  72. * foo
  73. <<<
  74. <p>* foo</p>
  75. <ul>
  76. <li>foo</li>
  77. </ul>
  78. >>> Entity and numeric character references - 335
  79. foo&#10;&#10;bar
  80. <<<
  81. <p>foo
  82. bar</p>
  83. >>> Entity and numeric character references - 336
  84. &#9;foo
  85. <<<
  86. <p>foo</p>
  87. >>> Entity and numeric character references - 337
  88. [a](url &quot;tit&quot;)
  89. <<<
  90. <p>[a](url &quot;tit&quot;)</p>