Same error occured when I try to open a scene built in UE5EA. I try to debug and found that when you use DX12 the engine will use a new feature called texture profiler, and it ask texture to have an ANSI string texture name. For now you could fix the name of your texture to English using default DX11 and then open it in DX12.
If you are crashing upon opening the editor, you can open the editor in DX11 mode by changing the RHI in DefaultEngine.ini or by specifying -d3d11 on the command line.
You need to make sure the texture’s filename is only ASCII characters (ASCII - Wikipedia), and not one of a set of symbols.
To be safe, you might want to stick with upper- and lower-case letters, numbers, and underscores only.