0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

パーセントエンコーディング/URLエンコード

Last updated at Posted at 2025-10-01

まとめページに戻る
まとめN~Z


パーセントエンコーディング (英: percent-encoding) とは、URIにおいて使用できない文字を使う際に行われるエンコード(一種のエスケープ)の名称である。

「%」を使用していることから、この名称で呼ばれている。一般にURLエンコードとも称される。

URLエンコードには、上記のパーセントエンコーディングによる符号化と以下に記述するapplication/x-www-form-urlencodedによる符号化の2種類がある。半角スペースはパーセントエンコーディングでは「%20」に符号化されるが、application/x-www-form-urlencodedによる符号化では「+」に符号化される。

エラーの例

image.png

The user ID contains a value called 2F, which is not an ID. Try removing 2F.

2F005gL000006KEeV --> 005gL000006KEeV

関連しそうな記事

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?