🌷

%2522

2022/09/20に公開

str = ダブルクォーテーション"、ダブルクォーテーション%22

str = encodeURIComponent(str)
// ダブルクォーテーション%22、ダブルクォーテーション%2522

「"」▷▶「%22」
「%」▷▶「%25」

str = decodeURIComponent(str)
// ダブルクォーテーション"、ダブルクォーテーション%22

「%22」▷▶「"」
「%25」▷▶「%」

分かってしまえば当たり前なんだけど
始めたばかりの時はこういうことでよく躓くもの

Discussion