Hebrew text in HTML files

I just did a fairly large recruitment session, introducing things for a specific Hebrew prayer named Tikkun Haklali. This is here on jsfiddle.net . Unfortunately, when I tried to save HTML and CSS to my computer, I get something like this:

enter image description here

not something like this:

enter image description here

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

+6
source share
1 answer

HTML encoding: UTF-8. Thus, the browser will do it right.

<meta charset="utf-8"> 

Put it right after <head>

+16
source

Source: https://habr.com/ru/post/899947/


All Articles