About 275 results
Open links in new tab
  1. javascript: How to URL encode strings that contain dashes (-)?

    Jun 12, 2017 · - is a character that appears in the ASCII character set and has no special meaning in URLs. While you can encode it as %2D, doing so is not needed nor is it normal.

  2. HTML URL Encoding Reference - W3Schools

    Since URLs often contain characters outside the ASCII set, the URL has to be converted into a valid ASCII format. URL encoding replaces unsafe ASCII characters with a "%" followed by two …

  3. Percent-encoding - Wikipedia

    Percent-encoding, also known as URL encoding, is a method to encode arbitrary data in a uniform resource identifier (URI) using only the US-ASCII characters legal within a URI. Percent-encoding is …

  4. URL Encoding Explained: What %20, %3A, and %2F Actually Mean

    Feb 26, 2026 · Why do URLs have those weird percent signs? Here's everything you need to know about URL encoding -- common characters, language-specific functions, and the mistakes that break …

  5. URL Encoded Characters - DeGraeve

    - %2D . %2E / %2F 0 %30 1 %31 2 %32 3 %33 4 %34 5 %35 6 %36 7 %37 8 %38 9 %39 : %3A ; %3B < %3C = %3D > %3E ? %3F

  6. URL Encode Online - URLEncoder

    URL Encoding is a way to translate reserved and non-ascii characters in URLs to a format that is universally accepted and understood by all web browsers and servers. It makes the URLs more …

  7. U+002D: HYPHEN-MINUS (Unicode Character)

    The character - (HYPHEN-MINUS) is represented by the Unicode codepoint U+002D. It is encoded in the Basic Latin block, which belongs to the Basic Multilingual Plane.

  8. URL escape codes - Micro Focus

    You can use the following characters or strings to represent white space in the query portion of a URL:

  9. HTML - URL Encoding - Online Tutorials Library

    The encoding notation replaces the desired character with three characters: a percent sign and two hexadecimal digits that correspond to the position of the character in the ASCII character set.

  10. URL Encoding - OpenPLZ API

    Other characters (e.g., /, ?, &) have specific meanings in URLs and can only be used as encoded values in query parameters. Encoding replaces each character with a combination of: A percent sign (%). …