I can paste the character itself in my code, and it will print the correct character to console if it set to display UTF-8.
Since the character is part of the ASCII set, couldn't I just print the character using Serial.write(176)?
It doesn't seem to work...
What terminal program are you using? The Serial Monitor in the Arduino IDE is pretty basic. It might not handle extended characters. You might need a little better terminal.
I don’t know that one. So I can’t say whether or not I’d expect it to be able to print the character in question.
Maybe you should post some basic code showing how you try and describe the actual output you get.
ASCII doesn't go up to 176. ASCII defines only characters 0 through 127, no more, no less.
Since it's not ASCII, you'll need to figure out what character set and encoding your terminal uses and then find the character in that set and write it to the terminal in the right encoding. The character set might be ISO8859-1 or Unicode (encoded in UTF-8) or something else.