Outil en ligne de décodage d'URL
À propos deOutil en ligne de décodage d'URL:
Cet outil de décodage d'URL en ligne peut vous aider à convertir une chaîne de format d'URL en chaîne UTF-8 en clair.
Table de conversion de décodage d'URL:
% 21 | % 23 | % 24 | % 26 | % 27 | % 28 | % 29 | % 2A | % 2B | % 2C | % 2F | % 3A | % 3B | % 3D | % 3F | % 40 | % 5B | % 5D |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
! | # | $ | & | ' | ( | ) | * | + | , | / | : | ; | = | ? | @ | [ | ] |
Calculer l'URL de décodage d'une chaîne en Python:
import urllib.parse def url_decode(input_str): output_msg = urllib.parse.unquote(input_str).strip() return output_msg
Calculer le décodage URLL d'une chaîne en Java:
import java.io.UnsupportedEncodingException; import java.net.URLDecoder; public class URL { public static String url_decode(String url) throws UnsupportedEncodingException { return URLDecoder.decode(url, "UTF-8"); } public static void main(String[] args) throws UnsupportedEncodingException { String result = url_decode("https%3A%2F%2Fmaps.google.com%2Fmaps%3Fll%3D37.413323%2C-122.081267%26z%3D11%26q%3DMountain+View+California+USA"); System.out.println(result); } } ------------------- https://maps.google.com/maps?ll=37.413323,-122.081267&z=11&q=Mountain View California USA