I'm trying to make a program that reads textfiles. I tried this code and it almost works but the output starts with these 3 characters 
How do I write so it doesn't output them?
JFileChooser chooser = new JFileChooser();
chooser.setDialogTitle("Select a text file");
int Checker = chooser.showOpenDialog(null);
File F = chooser.getSelectedFile();
String line = null;
try {
FileReader fileReader = new FileReader(F);
BufferedReader bufferedReader = new BufferedReader(fileReader);
while ((line = bufferedReader.readLine()) != null) {
System.out.println(line);
}
bufferedReader.close();
} catch (FileNotFoundException ex) {
System.out.println("Unable to open file '" + F + "'");
} catch (IOException ex) {
System.out.println("Error reading file '" + F + "'");
}