12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- >>> Entity and numeric character references - 321
- & © Æ Ď
- ¾ ℋ ⅆ
- ∲ ≧̸
- <<<
- <p>& © Æ Ď
- ¾ ℋ ⅆ
- ∲ ≧̸</p>
- >>> Entity and numeric character references - 322
- # Ӓ Ϡ �
- <<<
- <p># Ӓ Ϡ �</p>
- >>> Entity and numeric character references - 323
- " ആ ಫ
- <<<
- <p>" ആ ಫ</p>
- >>> Entity and numeric character references - 324
-   &x; &#; &#x;
- �
- &#abcdef0;
- &ThisIsNotDefined; &hi?;
- <<<
- <p>&nbsp &x; &#; &#x;
- &#987654321;
- &#abcdef0;
- &ThisIsNotDefined; &hi?;</p>
- >>> Entity and numeric character references - 325
- ©
- <<<
- <p>&copy</p>
- >>> Entity and numeric character references - 326
- &MadeUpEntity;
- <<<
- <p>&MadeUpEntity;</p>
- >>> Entity and numeric character references - 327
- <a href="öö.html">
- <<<
- <a href="öö.html">
- >>> Entity and numeric character references - 328
- [foo](/föö "föö")
- <<<
- <p><a href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
- >>> Entity and numeric character references - 329
- [foo]
- [foo]: /föö "föö"
- <<<
- <p><a href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
- >>> Entity and numeric character references - 330
- ``` föö
- foo
- ```
- <<<
- <pre><code class="language-föö">foo
- </code></pre>
- >>> Entity and numeric character references - 331
- `föö`
- <<<
- <p><code>f&ouml;&ouml;</code></p>
- >>> Entity and numeric character references - 332
- föfö
- <<<
- <pre><code>f&ouml;f&ouml;
- </code></pre>
- >>> Entity and numeric character references - 333
- *foo*
- *foo*
- <<<
- <p>*foo*
- <em>foo</em></p>
- >>> Entity and numeric character references - 334
- * foo
- * foo
- <<<
- <p>* foo</p>
- <ul>
- <li>foo</li>
- </ul>
- >>> Entity and numeric character references - 335
- foo bar
- <<<
- <p>foo
- bar</p>
- >>> Entity and numeric character references - 336
- 	foo
- <<<
- <p>foo</p>
- >>> Entity and numeric character references - 337
- [a](url "tit")
- <<<
- <p>[a](url "tit")</p>
|