Glossary
URL Encoding (Percent Encoding)
Converts characters that are not allowed in URLs into a percent-encoded format using the notation %XX where XX is the two-digit hexadecimal value of the character's UTF-8 byte. Spaces become %20, @ becomes %40, and ampersands become %26. It ensures that special characters in URLs are transmitted correctly without being misinterpreted as structural delimiters.