HTML-koodaaja
HTML-entiteettien koodaus ja purku
Syöte
Tuloste
Yleisimmät HTML-entiteetit
| Merkki | Entiteetti | Numeerinen | Käytä |
|---|---|---|---|
| & | & | & | |
| < | < | < | |
| > | > | > | |
| " | " | " | |
| ' | ' | ' | |
| / | / | / | |
| © | © | © | |
| ® | ® | ® | |
| € | € | € | |
| |   |
Esimerkit
| Mode | Input | Käytä |
|---|---|---|
| Koodaa | <script>alert("XSS")</script> | |
| Koodaa | <h1>Hello & "World"</h1> | |
| Koodaa | <a href="https://example.com?a=1&b=2">Link</a> | |
| Pura | <p>Hello & "World"</p> | |
| Pura | <script>alert('xss')</script> |