In this example, we will take a look at how to Encode/Decode URL Query String in Notepad++,
Encoding URL Query String:
- Open Notepad++,
- Copy and Paste the URL string in one of the tab,
- Now select all the text (Control + A),
- Goto Menu: Plugins -> MIME Tools -> URL Encode
- Text will get encoded.

https://code2care.org/query=This is a search query, A&B Welcome!
After Encoding:
https://code2care.org/query=This%20is%20a%20search%20query,%20A%26B%20Welcome!
Decoding URL Query String:
- Copy and Paste the URL string in one of the tab,
- Now select the text from the URL that you want to decode,
- Goto Menu: Plugins -> MIME Tools -> URL Decode
- Text will get decoded.
https://code2care.org/query=This%20is%20a%20search%20query,%20A%26B%20Welcome!
After Encoding:
https://code2care.org/query=This is a search query, A&B Welcome!
✌️ Try out our Online URL Encoder Decoder
More Posts related to NotepadPlusPlus,
- [Solution] Notepad++ Compare option unavailable
- How to delete all text after a character or string in Notepad++
- Notepad++ hex editor Examples
- Add Custom header and footer to Windows Notepad file
- Unable to edit file in Notepad++
- Locate Notepad++ unsaved files backup location
- Add Text at Start and End of Each Line Notepad++
- [Tutorial] How to Customize Notepad++ Toolbar
- How to hide lines in Notepad++
- How to close all tabs of Notepad++?
- Notepad++ Save Failed - Please check if this file is opened in another program.
- How to connect to an FTP or SFTP location using Notepad++
- How to add or remove bookmark on a line in Notepad++
- Enabling Notepad++ Dark Theme
- Notepad++ Reload - This file has been modified by another program. Do you want to reload it?
- Prettify JSON in Notepad++
- Portable Notepad++ for windows
- Alternatives for Notepad++ on Mac in 2021
- Indent XML Formatting In Notepad++
- Go to Line Number option in Windows Notepad
- Word count in Notepad++
- Show Notepad++ tabs in multiple lines instead of scroll on tab bar
- [Nopepad++] How to add text at end of each line
- How to open a new tab in Notepad++
- How to open Notepad?
More Posts:
- Android SecurityException: Need BLUETOOTH ADMIN permissicacheNameAndAddresson: Neither user 10123 nor current process has android.permission.BLUETOOTH_ADMIN - Android
- java.lang.NoClassDefFoundError android.support.v4.content.LocalBroadcastManager - Android
- Read Text file from SD Card : Android Programming - Android
- Struts2 : java.lang.ClassNotFoundException: org.apache.commons.fileupload.RequestContext - Java
- How to know your Mac Screen Resolution? - MacOS
- BSNL Broadband upgrades speed to minimum 2MBps for all users 512Kbps 1Mbps - HowTos
- Android AlertDialog with 3 buttons example - Android
- How to Disable EditText Keyboard Android App - Android