If your source code is in UTF-8, then the string is in UTF-8, if not — it’s not. Since your example string is english-only, it is valid UTF-8.
PHP doesn’t itself know about charsets. If you pass stuff to mb* function, it treats it as an UTF-8 string.
Concatenation must work fine no matter what, if I understand UTF-8 right :-) Just make sure both strings are UTF-8, otherwise you will get strange string as a result.
