SQLite Forum

Unicode Input/output in sqlite3.exe on Windows 10
Login
Try to run **`cmd`** and issue command **`chcp 65001`**, then try again SQLite3

If it works, then you can either make a **cmd** script like this:

```
@echo off
CHCP 65001

:: And below going your logic with sqlite3

```

or switch windows's console permanently to UTF8:

run **`regedit`** and go to:

```
HKLM\Software\Microsoft\Command Processor\Autorun
```

and change the value of the key to **`@chcp 65001>nul`**