コード、データと QRツール

URL エンコーダー & デコーダー

「URL エンコーダー & デコーダー」はコード、データと QRに使えるブラウザツールです。入力内容と結果は通常この端末内で処理され、登録は必要ありません。

ブラウザ内で処理登録不要プライバシーの説明 ↗

使い方

使い方

  1. Paste a URL component up to 100,000 characters.
  2. Choose Encode component or Decode component.
  3. Review the transformed value and copy it.

Components, not full URLs

This tool uses encodeURIComponent and decodeURIComponent. Use it for an individual query value, path segment, or fragment value; encoding an entire URL would also escape its structural colon and slashes.

Decode carefully

Malformed percent escapes cannot be decoded and produce an error. A plus sign is left as a plus sign because this tool follows JavaScript component encoding rather than form-url-encoded rules.

よくある質問

あわせて知りたいこと

Should I paste a full URL?

No. Paste the component you want to encode or decode, such as one query value.

Does plus become a space?

No. A plus sign remains a plus sign with encodeURIComponent and decodeURIComponent.

Why did decoding fail?

The input has malformed percent escapes or an invalid encoded character sequence.