0

I am translating all my messages to thai aside from en-us. Now I have encountered a problem that an Unknown Question mark character shows up.

The code:

{!! trans('messages.client_dashboard') !!}

The expected result:

แดชบอร์ดลูกค้า

The result:

���ดชบอร์ดลูกค้า

I dont seem to understand why this happens. in my header there is the two

<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">

Any help would help greatly.

Reyn
  • 757
  • 1
  • 5
  • 16

1 Answers1

0

Try with installing some other Thai font on your system.

Krunal
  • 317
  • 1
  • 7
  • In past I had faced similar issue. On one system text was looking fine but on another system had similar issue. – Krunal May 02 '16 at 08:37
  • I guess I found the problem. One of my codes use ucfirst() method. I just removed it and it now works fine. – Reyn May 02 '16 at 08:42