Web encodings
Web pages and emails use several ways to write special characters in plain text. URLs use a percent sign and two hex digits, so a space is %20. HTML uses entities like & and H. Programs use escapes like \u0048, and emails use =48.
CacheCrack spots which one you have and decodes it, so you do not need to know the name.
Example
Cache%20%26%20Go is Cache & Go.