Closed
Description
Symfony version(s) affected: 5.0.4
Description
German Umlauts ignored in Console Question Helper
How to reproduce
protected function execute(InputInterface $objInput, OutputInterface $objOutput)
{
$objHelper = $this->getHelper('question');
$objQuestion = new Question('Title: ');
$strTitle = $objHelper->ask($objInput, $objOutput, $objQuestion);
$objOutput->writeln($strTitle);
return 0;
}
If i type "aaaöäübbb" in console i just get "aaa\\bbb" as outout. If i just type umlauts like "öäü" the output is empty.