pipr.tools
Pipes
Clean Email Strip formatting from pasted email for clean plain text Clean AI Output Clean plain text from ChatGPT or AI output Decode & Format JWT Decode a JWT and pretty-print header and payload Word Frequency Count word frequency in text

html-decode Unescape HTML entities

{ } Encode
Input0 chars
Output0 chars

Examples

Unescape HTML entities back to text

Usage
"<p>Hello & welcome</p>" | html-decode

Decode HTML entities from scraped product listing text

Usage
"Top sellers: Widget™ & Gadget® —..." | html-decode

Convert HTML entities back to readable text for editing

Usage
"<h1>Welcome!</h1><p>You're signed ..." | html-decode
View source
(input)=>{
                const el = document.createElement("textarea");
                el.innerHTML = input;
                return el.value;
            }

Also useful for