¿Cómo crear CSR con el tema utf8 en openssl?

Estoy tratando de generar la solicitud de firma de certificado con el tema UTF-8.

$ openssl req  -utf8 -nodes -newkey rsa:2048 -keyout my.private_key.pem -out my.csr.pem -text
Generating a 2048 bit RSA private key
......................................................................................................................................................................+++
......+++
writing new private key to 'my.private_key.pem'
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [PL]:
State or Province Name (full name) []:Zażółć gęślą jaźń
problems making Certificate Request
12376:error:0D07A07C:asn1 encoding routines:ASN1_mbstring_ncopy:illegal characters:a_mbstr.c:162:

La codificación del terminal es UTF-8, tengo el mismo problema cuando uso el sujeto de la línea de comandos(...) -subj /C=PL/ST=zażółć\ gęślą\ jaźń/O=my-company/CN=ThisIsMeForSure

Cuando me salto el-utf8 interruptor, la CSR se genera con todos los caracteres que no son ASCII reemplazados con notación hexadecimal (por ejemplo,ó se convierte en\xC3\xB3). Dicha CSR no se puede leer correctamente con php (openss_x509_parse) - el originaló Se lee como cuatro bytes, representando dos caracteres extraños ...

¿Qué estoy haciendo mal?

Respuestas a la pregunta(3)

Su respuesta a la pregunta