Displaying unicode characters from a txt file
in
Programming Questions
•
1 year ago
Hi,
I am trying to display an en dash. It works when I use the unicode straight in process, but not when it's pulling from a txt file. How can I get it to pull the en dash from the txt file?
Here's my code:
PFont helvetica;
void setup() {
size (400, 400);
background(255);
helvetica = loadFont("Helvetica-12.vlw");
String[] testtext = loadStrings("test.txt");
textFont(helvetica);
fill(0);
text("1 \u2013 2 days", 50, 200); //this displays the en dash
text(testtext[0], 50, 100); //this displays "\u2013"
my txt file just has 1 line of text:
1 \u2013 2 days
1