LCD prints KATAKANA

Any better idea? I did so :

char a =0b10110001;
char ru =0b11011001;
char he =0b11001101;
char tenten =0b11011110;
char to =0b11000100;

LCD.setCursor(0,0);
LCD.print(a);
LCD.setCursor(1,0);
LCD.print(ru);
LCD.setCursor(2,0);
LCD.print(he);
LCD.setCursor(3,0);
LCD.print(tenten);
LCD.setCursor(4,0);
LCD.print(ru);
LCD.setCursor(5,0);
LCD.print(to);

That s work fine, but the chars seem fixed.
My question is if it is possible render them floating in the display.

I don't understand the queston.

Please remember to use code tags when posting code.