When reading on Haacked's blog post about the Hazards of Converting binary data to a string I started worrying about the way I want to encode and store the hash (asp.net mvc). The type I use is Binary(60), as advised in this stackoverflow post.
BCrypt gives me a string, which I need to convert to byte[] before putting it in the database. On retrieving it from the database it I convert it back. I am using System.Text.Encoding.UTF8.GetString(data).