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?