In other words, I want the string to disregard the escape characters and treat it as an actual string?
If the string is hard coded, as you show, you can modify it to use:
string s = "\\t Hello \\n";
If you want to be able to handle any string thrown at your program, you'll have to write a function and deal with all the escape sequences allowed by the language.
std::ostream& writeString(std::ostream& out, std::string const& s)
{
   for ( auto ch : s )
   {
      switch (ch)
      {
         case '\'':
            out << "\\'";
            break;
         case '\"':
            out << "\\\"";
            break;
         case '\?':
            out << "\\?";
            break;
         case '\\':
            out << "\\\\";
            break;
         case '\a':
            out << "\\a";
            break;
         case '\b':
            out << "\\b";
            break;
         case '\f':
            out << "\\f";
            break;
         case '\n':
            out << "\\n";
            break;
         case '\r':
            out << "\\r";
            break;
         case '\t':
            out << "\\t";
            break;
         case '\v':
            out << "\\v";
            break;
         default:
            out << ch;
      }
   }
   return out;
}
Use it as:
writeString(std::cout, s);