What's the best candidate padding char for url-safe and filename-safe base64? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T06:21:06Zhttp://stackoverflow.com/feeds/question/659717http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/659717/whats-the-best-candidate-padding-char-for-url-safe-and-filename-safe-base640What's the best candidate padding char for url-safe and filename-safe base64?SamS2009-03-18T19:20:28Z2009-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#6597300Answer by cobbal for What's the best candidate padding char for url-safe and filename-safe base64?cobbal2009-03-18T19:22:36Z2009-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#6597461Answer by Miles for What's the best candidate padding char for url-safe and filename-safe base64?Miles2009-03-18T19:26:28Z2009-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>