You can embed the character inside a string using a backslash followed by either a hex or octal number:
lcd.print("\xDF"); //hex value for 223
lcd.print("\337"); //octal value for 223
You can embed the character inside a string using a backslash followed by either a hex or octal number:
lcd.print("\xDF"); //hex value for 223
lcd.print("\337"); //octal value for 223