I'm using the LCD library and some custom characters on an Arduino.
The line
lcd.print(char(0) + char(1) + char(6) + char(1) + char(1) + char(2) + ' ' + char(0) + char(1) + char(1) + ' ' + char(0) + char(1) + char(1) + char(2) + ' ' + char(0) + char(1) + char(1) + char(2));
should display a series of custom characters, but instead just shows
117
What have I done wrong. I'm fairly new to C/C++ but have used C# a lot.