Input Text
Output Result
0
Input Characters
0
Output Characters
0
Lines Processed
0ms
Processing Time
âšī¸ Encoding Modes
Standard: Encodes the entire string using standard URL encoding.
Names Only: Only encodes the name part of name=value pairs.
Values Only: Only encodes the value part of name=value pairs.
Names and Values: Encodes both names and values but preserves = and & separators.
Full Escape checkbox: When checked, encodes ALL characters including letters and numbers (a becomes %61, 1 becomes %31).
Detect URL checkbox: Recognizes full URLs and only encodes the query string parameters.
đ Examples and Use Cases
Values Only:
q=tallahassee produces
q=tallahassee (no change - no special chars)
Values Only + Full Escape:
q=tallahassee produces
q=%74%61%6C%6C%61%68%61%73%73%65%65
Names Only + Full Escape:
q=tallahassee produces
%71=tallahassee
Names and Values + Full Escape + Detect URL:
https://www.google.com/search?q=tallahassee produceshttps://www.google.com/search?%71=%74%61%6C%6C%61%68%61%73%73%65%65