1

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.

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
Yogesh Ghimire
  • 432
  • 1
  • 8
  • 21

1 Answers1

0

As @Andrew has commented:

  • Make sure you are using the latest Unicode version of Inno Setup and;
  • Make sure your script file is encoded as UTF-8 with BOM.
Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992