header.description
encoding.method
encodeURIComponent()
Encodes everything except A–Z a–z 0–9 - _ . ! ~ * ' ( )
Use for query params, path segments, form values
encodeURI()
Encodes everything except URI-safe chars and : / ? # [ ] @ ! $ & ' ( ) * + , ; =
Use for a complete URL — preserves URL structure
application/x-www-form-urlencoded()
Like encodeURIComponent but spaces become + instead of %20
Use for HTML form submissions
encoding.examples
encoding.outputPlaceholder
related.title
cta.description