Removes HTML tags and decodes basic entities to plain text.
Strip HTML Tags removes every HTML tag from your input and returns clean plain text. It also decodes the most common HTML entities ( , ", ', <, >, &) and collapses runs of blank lines, so pasted markup turns into readable text in one step.
No. The tool runs entirely in your browser using plain JavaScript, and nothing you paste is uploaded or stored anywhere.
It decodes (to a space), ", ', <, >, and &. Other named or numeric entities are left as-is.
Anything between angle brackets is stripped via a regular expression. This is fast for general cleanup but does not parse a full DOM, so deliberately malformed or unclosed brackets may not be handled the way a browser would render them.
The tag markers are removed, but the text between <script> or <style> tags is not specially detected, so that inner content will remain in the output. Remove those blocks beforehand if you don't want them.
Three or more consecutive blank lines are collapsed into a single blank line, and leading and trailing whitespace is trimmed from the final result.