Just a quick reference of characters with their URL encoded version. Useful in deeplinks / URL-schemes.
Examples
Hello worldbecomes:Hello%20worldAre you there?becomes:Are%20you%20there%3F:)becomes:%3A%29
So in a URL scheme, you would do something like this:
https://wa.me/1234/?text=Find%20me%20at%20https%3A%2F%2Ffrankl.inConversion table
| Character | URL encoding |
|---|---|
| (space) | %20 |
" | %22 |
< | %3C |
> | %3E |
# | %23 |
% | %25 |
| | %7C |
{ | %7B |
} | %7D |
[ | %5B |
] | %5D |
/ | %2F |
\ | %5C |
( | %28 |
) | %29 |
& | %26 |
$ | %24 |
| @ | %40 |
: | %3A |
= | %3D |
? | %3F |
! | %21 |