I'm trying to display a few Unicode characters inside of a jLabel. Take for example, the "degrees Fahrenheit" character (℉ or "\u2109"). This character is only being displayed when I use the default font-size, which happens to be 11. When I change the font-size, the character is replaced with an empty square. I've tried several different sizes and several different fonts that supposedly support a wide range of unicode characters. Can anyone tell me why Swing only displays this unicode character under a specific font-size?
Proof:
All the code related to the UI is auto-generated by NetBeans using the designer, but here is how I'm supplying the text to the jLabel:
private void btnConvertActionPerformed(java.awt.event.ActionEvent evt) {
if(optToFarenheit.isSelected())
{
int tempFahr = (int)((Double.parseDouble(txtInput.getText()))
* 1.8 + 32);
lblResult.setText(tempFahr + " ℉");
//lblResult.setText(tempFahr + " \u2109"); <-- Tried this too
}
}