FString not work well when containing Chinese characters

FString UMyBlueprintFunctionLibrary::TestFString(FString m)
{
return m;
}
If I call this function in blueprint and set the parameter of m as “你”,and print the return value.It prints ?? rather than “你”. How can i solve this problem?