Openssl cannot interpret non-English Character

I am using windows openssl version 3.0.1 14. The issue is when the file name has non-English character, it failed to encrypt the file with below error:

C:UsersXXXDesktop>openssl aes-256-cbc -e -salt -in "C:UsersXXXDesktoptest试试.txt" -out "C:UsersXXXDesktoptestENCRYPTING.txt" -k 12230000000000000000000000000000 -iv F1230000000000000000000000000000
Can't open "C:UsersXXXDesktoptest??.txt" for reading, Invalid argument
B8280000:error:8000007B:system library:BIO_new_file:Unknown error:cryptobiobss_file.c:67:calling fopen(C:UserslishiDesktoptest??.txt, rb)
B8280000:error:10080002:BIO routines:BIO_new_file:system lib:cryptobiobss_file.c:77:

The terminal I use is Windows command prompt, I verified that this Chinese file can be opened successfully in cmd using issuing:

C:UsersXXXDesktop>notepad C:UsersXXXDesktoptest试试.txt

Any configuration things I need to do in openssl side to support utf8?