well I have a simple text file where I have my textual data filled, which requires to be saved as utf-8, since I have some unicode symbols...
Well i just wrote a normal text file with notepad and saved as txt with utf-8
But i seem to be getting some kind of weird thing in front:

It's some kind of weird dot which can't even normally be pasted anywhere else. I could maybe try removing the first symbol, but I don't think that's a real solution, besides I'm not sure if it will always come up...
This is the code part:
FileInputStream fstream = new FileInputStream(fileName);
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String values;
//Read File Line By Line
System.out.println("Generating queries from: " + fileName);
String fields = br.readLine();
System.out.println("The fields are: " + fields);
Anyone came accross this and knows a solution?
Thanks in advance.
fields.codePointAt(0)?