Any Idea how to add custom characters (LCD lib) to a string?

I specified a custom character as described on LiquidCrystal - Arduino Reference

If I like to mix "normal" character output with custom characters I use this workaround atm:

lcd.print("this before ");
lcd.write(3);
lcd.print(" this after the custom char");

I have to break the statement in three (or more) parts to add custom characters.

Is there any way to inculde this character in a single string, something like:

char myStringA[ ] = "this before [hmm, what to put here?? for the custom char] this after the custom char";
or
String myStringB = String("this before ") + [hmm, what here?, the custom char] + String(" this after the custom char");

Use the backslash directive:-
\xhh Character with hexadecimal value hh

More at:-

Oh, this works!! Thanks a lot, it makes my sketch much easier!