Test Cases showing wrong

Sir my code is working fine but is showing two of the test cases out of 5 as wrong.
#include
using namespace std;

char Check(char ch)
{
if(ch>=‘A’ && ch<=‘Z’)
return ‘U’;

else if(ch>='a' && ch<='z')
   return 'L';

else
   return 'i';  

}

int main() {
char ch;
cin>>ch;

char temp=Check(ch);
cout<<temp;      
return 0;

}

it should be capital I

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.