I am using Inno Setup to create an installer file. The version I am using is 5. When the installer is installed in the Windows operating system, the AppPublisher
is not displayed in correctly. Here is the sample code I wrote:
[Setup]
AppId={{23ASEADS-AB2}
AppName=EmptyProgram
AppVersion=1
AppPublisher=नमस्ते
However, I see something like this नमसà¥à¤¤à¥‡
instead of नमस्ते
. Is there any solution for this situation? I also tried to use Hex value like :
AppPublisher=#$92892e93894d924947
But it ended up printing the same value and not the converted value. I would appreciate if anyone can help me with this. Thank you.