Online-Tool zur URL-Kodierung
Das Ergebnis wird hier angezeigt.
xxxxxxxxxx
1
1
ÜberOnline-Tool zur URL-Kodierung:
Mit diesem Online-URL-Codierungsprogramm können Sie eine Eingabezeichenfolge in eine URL-Formatzeichenfolge konvertieren.
URL-Codierungstabelle:
! | # | $ | & | ' | ( | ) | * | + | . | / | : | ; | = | ? | @ | [ | ] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
%21 | %23 | %24 | %26 | %27 | %28 | %29 | %2A | %2B | %2C | %2F | %3A | %3B | %3D | %3F | %40 | %5B | %5D |

Berechnen Sie die URL-Kodierung einer Zeichenfolge in Python:
- import urllib.parse
- def url_encode(input_str):
- output_msg = urllib.parse.quote(input_str).strip()
- return output_msg
Berechnen Sie die URL-Kodierung einer Zeichenfolge in Java:
- import java.io.UnsupportedEncodingException;
- import java.net.URLEncoder;
- public class URL {
- public static String url_encode(String url) throws UnsupportedEncodingException {
- return URLEncoder.encode(url, "UTF-8");
- }
- public static void main(String[] args) throws UnsupportedEncodingException {
- String result = url_encode("https://maps.google.com/maps?ll=37.413323,-122.081267&z=11&q=Mountain View California USA");
- System.out.println(result);
- }
- }
- -------------------
- https%3A%2F%2Fmaps.google.com%2Fmaps%3Fll%3D37.413323%2C-122.081267%26z%3D11%26q%3DMountain+View+California+USA