Long URLs often get wrapped and become non-clickable in some email clients.
I prefer short URLs, including using base64 for embedded codes:
| a-z | 26 lowercase letters |
| A-Z | 26 uppercase letters |
| 0-9 | 10 numeric digits |
| - and _ | hyphen and underscore |
Using the above base64 character set, we can now encode 16 million values using only 4 characters (e.g., 5tY6), or 68 billion values using only 6 characters (e.g., 5tY6_q).
See also these flight results, and code in Java and PHP.
And geo64 is Python code to map geo lat/lon coordinates to base64 URLs.
