Easily converting keycode to string

Is there a way to easily convert a keycode to a string, without having to create a case list for each letter?

1 Like

Hello,

void setup() 
	{
  size(200, 200);
	}

void draw()
	{
	}

void keyPressed()
  {
  println(char(keyCode), keyCode);
  }

:slight_smile:

2 Likes

Haha thanks, quite a lot easier than I thought.