What's the best candidate padding char for url-safe and filename-safe base64? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:21:06Z http://stackoverflow.com/feeds/question/659717 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/659717/whats-the-best-candidate-padding-char-for-url-safe-and-filename-safe-base64 0 What's the best candidate padding char for url-safe and filename-safe base64? SamS 2009-03-18T19:20:28Z 2009-03-19T09:12:13Z <p>The padding char for the official base64 is '=', which might need to be percent-encoded when used in a URL. I'm trying to find the best padding char so that my encoded string can be both url safe (I'll be using the encoded string as parameter value, such as id=encodedString) AND filename safe (I'll be using the encoded string directly as filename).</p> <p>Dot ('.') is a popular candidate, it's url safe but it's not exactly filename safe: <a href="http://msdn.microsoft.com/en-us/library/aa365247.aspx" rel="nofollow">Windows won't allow a file name which ends with a trailing dot</a>.</p> <p>'!' seems to be a viable choice, although I googled and I've never seen anybody using it as the padding char. Any ideas? Thanks!</p> <p><strong>Update</strong>: I replaced "+" with "-" (minus) and replaced "/" with "_" (underscore) in my customized base64 encoding already, so '-' or '_' is not available for the padding char any more.</p> http://stackoverflow.com/questions/659717/whats-the-best-candidate-padding-char-for-url-safe-and-filename-safe-base64/659730#659730 0 Answer by cobbal for What's the best candidate padding char for url-safe and filename-safe base64? cobbal 2009-03-18T19:22:36Z 2009-03-18T19:22:36Z <p>I would go with '-' or '_'<br /> They're URL and file safe, and they looks more or less like padding</p> http://stackoverflow.com/questions/659717/whats-the-best-candidate-padding-char-for-url-safe-and-filename-safe-base64/659746#659746 1 Answer by Miles for What's the best candidate padding char for url-safe and filename-safe base64? Miles 2009-03-18T19:26:28Z 2009-03-18T19:26:28Z <p>The <a href="http://www.ietf.org/rfc/rfc2396.txt" rel="nofollow">RFC 2396</a> unreserved characters in URIs are:</p> <pre><code>"-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")" </code></pre> <p>It's worth pointing out, though, that the Microsoft article also says "Do not assume case sensitivity." Perhaps you should just stick with base 16 or 32?</p>