URLのエンコードとデコード

俺得.net / アプリ / URLのエンコードとデコード

URLをEncodingしたりDecodingしたり。JavaScriptのみで出来ています。
UTF8です。encodeURIComponentは"&=#$+,/:;=?@"等の特殊な意味を持つ文字も変換します。

Encode

url:

encodeURI:

encodeURIComponent:

Decode

url:

decodeURI:

decodeURIComponent: