Bug for the below code

import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc=new Scanner(System.in);
char ch=(char)sc.next().charAt(0);
if(ch>=ā€˜A’&&ch<=ā€˜Z’)
System.out.print(ā€˜U’);
else if(ch>=ā€˜a’&&ch<=ā€˜z’)
System.out.print(ā€˜L’);
else
System.out.print(ā€˜l’);
}
}
Can you pls find the bug?