The default encoding for command prompt is Windows-1252. Change the code page (chcp command) to 65001 (UTF-8) first and then run your command.
chcp 65001
C:\Windows\system32\ipconfig /all >> output.log
Change it back to default when done.
chcp 1252