URL Encode "search?q=こんにちは"

Original

search?q=こんにちは

URL Encoded

search%3Fq%3D%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF

"search?q=こんにちは" URL encoded is: search%3Fq%3D%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF

Common URL-encoded characters

CharacterEncodedName
%20space
/%2Fslash
?%3Fquestion mark
=%3Dequals
&%26ampersand
@%40at sign
#%23hash
+%2Bplus
%%25percent

How URL encoding works

URL encoding (percent-encoding) replaces unsafe characters with % followed by two hex digits. "search?q=こんにちは" becomes "search%3Fq%3D%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF" because special characters like spaces, @, and / must be encoded in URLs.

Try the URL encoder

Loading tool...