Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hebrew text in HTML files

I just did a pretty major typesetting session putting things in order for a specific prayer in Hebrew named Tikkun Haklali. It's here on jsfiddle.net. Unfortunately, when I tried to save the HTML and CSS to my computer, I get something like this:

enter image description here

rather than something like this:

enter image description here

What gives? Character encoding? If so, what should I save my text file in?

like image 995
Naftuli Kay Avatar asked Oct 24 '11 09:10

Naftuli Kay


1 Answers

HTML Charset Encoding: UTF-8. That way the browser will render it correctly.

<meta charset="utf-8">

Place that right after <head>

like image 142
MarioRicalde Avatar answered Oct 26 '22 04:10

MarioRicalde