Char to byte

but isn't possible to save in char and that i know.

So, this is presumably impossible

#include <EEPROM.h>

char putText[12] = {"Hello World"};
char getText[12];

void setup()
{
  Serial.begin(115200);
  EEPROM.put(0, putText);
  EEPROM.get(0, getText);
  Serial.println(getText);
}

void loop()
{
}