Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display Sinhalese letters in HTML [closed]

How to display Sinhalese letter in HTML?

For example,

<html>
   <body>
     <p>විද්‍යා දදාති විනයං</p>
   <body>
<html>

Is it possible?

like image 416
user3732708 Avatar asked May 07 '15 15:05

user3732708


2 Answers

In your HTML document you shoud use

<meta charset="UTF-8">

in your head tag.

You can also check how your site looks like on services like, for example, BrowserStack

like image 157
Бранко Пејић Avatar answered Oct 20 '22 13:10

Бранко Пејић


You can use <meta charset="UTF-8"> in your web page's head tag as Бранко Пејић mentioned in his answer.

Otherwise you can use SETTdeco. It enables your Sinhala website readable by any computer without depending on user's Sinhala support.

like image 38
Bishan Avatar answered Oct 20 '22 13:10

Bishan