Problem with unicode
Hello all. I am running a program that uses characters to send instructions to a machine we use here. The original version of this program was done in C but is now being ported to Java. One issue I am running into is the display of an extra character. I converted the character to an integer and it is 175. The C program displays this character as a horizontal bar valigned at the top (think upside down underscore). Java does display this character but adds an A with a carat on top of it (^) immediately before it.
I used BufferedReader to read in the file to see if I could just eliminate that character but when using charAt to display the characters in the line one by one, it prints the A with the horizontal bar. I need to display only the horizontal bar...how can I accomplish this?

