From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/glossary/percent-encoding/index.html | 76 +++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 files/ja/glossary/percent-encoding/index.html (limited to 'files/ja/glossary/percent-encoding/index.html') diff --git a/files/ja/glossary/percent-encoding/index.html b/files/ja/glossary/percent-encoding/index.html new file mode 100644 index 0000000000..a10cfe569c --- /dev/null +++ b/files/ja/glossary/percent-encoding/index.html @@ -0,0 +1,76 @@ +--- +title: Percent-encoding (パーセントエンコーディング) +slug: Glossary/percent-encoding +tags: + - Glossary + - WebMechanics +translation_of: Glossary/percent-encoding +--- +

パーセントエンコーディング(Percent-encoding)は、{{Glossary("URL")}} のコンテキストで特定の意味を持つ 8 ビット文字をエンコードするメカニズムです。URL エンコードとも呼ばれます。エンコードは置換で構成されます。'%' の後に、置換文字の ASCII 値の 16進表現が続きます。

+ +

エンコードが必要な特殊文字は、':', '/', '?', '#', '[', ']', '@', '!', '$', '&', "'", '(', ')', '*', '+', ',', ';', '='、および '%' 自体です。他の文字もエンコードできますが、エンコードする必要はありません。

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
':''/''?''#''['']''@''!''$''&'"'"'('')''*''+'','';''=''%'' '
%3A%2F%3F%23%5B%5D%40%21%24%26%27%28%29%2A%2B%2C%3B%3D%25%20 または +
+ +

コンテキストに応じて、文字 ' ''+'application/x-www-form-urlencoded メッセージで使用するパーセントエンコーディングバージョンなど)または URL のような '%20' に変換されます。

+ +

より詳しく知る

+ +

一般知識

+ + + +

技術的知識

+ + -- cgit v1.2.3-54-g00ecf