Can I get Country Code? like US, DE

I want get country code( like us, de, jp, kr …).
so I try using FInternationalization function.

run below codes.

FString GetName = FInternationalization::Get().GetCurrentCulture()->GetName();
FString NativeRegion = FInternationalization::Get().GetCurrentCulture()->GetNativeRegion();
FString NativeName = FInternationalization::Get().GetCurrentCulture()->GetNativeName();
FString EnglishName = FInternationalization::Get().GetCurrentCulture()->GetEnglishName();
FString Region = FInternationalization::Get().GetCurrentCulture()->GetRegion();
UE_LOG(LogTemp, Warning, TEXT( " :.. [%s, %s, %s, %s, %s ]"), *GetName, *NativeRegion, *NativeName, *EnglishName, *Region);

result

mobile (iOS , Android)
:.. [en, , English, English,  ]

Mac UE-Editor
:.. ko-KR 대한민국 한국어(대한민국) Korean (South Korea) KR

I can’t get country code with FInternationalization::Get().GetCurrentCulture()->GetRegion(); on mobile device.

Is there any way to get country code? (with UE Cpp, without Native Code(java, obj-c))…

Anybody dosen’t know that…

so I try to add JNI, etc… get country code myself.

#if PLATFORM_IOS
FIOSPlatformMisc::GetDefaultLocale();
#elif PLATFORM_ANDROID
FAndroidMisc::GetDefaultLocale();
#else
FGenericPlatformMisc::GetDefaultLocale();
#endif

GetDefaultLocale API provide Language & Region Code.

Like en-US