HTML Entities And URI Escape codes
Forgetting to use these entity codes may cause problems when making add buttons with HTML.
If these characters are not properly escaped/entitized then you may see things such as broken images, add buttons going straight to an empty basket, or even pieces of HTML code appearing as text.
Symbol | Form HTML Entity | Link URI Escape | Space | None needed | %20 | # | None needed | %23 | + | None needed | %2B | ; | None needed | %3B | " | " | %22 | & | & | %26 | < | < | %3C | > | > | %3E | ™ | ™ | %E2%84%A2 | £ | £ | %C2%A3 | © | © | %A9 | ® | ® | %AE | | | None needed | %7C |
Please note that this is not a complete list of all values that may need to be escaped. |