Dear Yuri,
You should report it in the WebView repo issues in GitHub
Antonio, please, specify - how do I report this in the WebView repo release on GitHub
Antonio, that's what they said
Antonio, what should I do based on the response from GitHub ?
Dear Yuri,
Have you tried this ?
Try adding <meta charset="UTF-8" /> to your <head> and see if that resolves your issue.
It didn't help. I tried both under Harbour and under xHarbour ![]()
For example, when configuring Cisco, it is also impossible to make a comment in Cyrillic. Very similar

#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local oWebView
oWebView := TWebView():New()
oWebView:bOnBind = { | cJson, nCalls | MsgInfo( cJson, nCalls ) }
oWebView:Bind( "SendToFWH" )
oWebView:Navigate( Html() )
Sleep( 200 )
oWebView:Eval( "SendToFWH( 'ok' )" )
oWebView:Run()
oWebView:Destroy()
return nil
//----------------------------------------------------------------------------//
function Html()
local cHtml
TEXT INTO cHtml
data:text/html,
<html>
<head>
<meta charset="UTF-8" />
</head>
<body style="background-color:cyan">
<h2>Using WebView from FWH</h2>
<button onclick='SendToFWH( 123 )'>Call FWH app from web browser</button>
<button onclick='SendToFWH( 456 )'>Test 2 Пример</button>
<button onclick='SendToFWH( 123, 456, "yes it works!" )'>Test 3</button>
</body>
</html>
ENDTEXT
? cHtml
return cHtml
//----------------------------------------------------------------------------//Cristobal, it's just mysticism, it doesn't work for me.
An empty Webview window appears. I have version 109.0.1518.78
Cristobal, copied your example. It worked. I'll figure it out