问题
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:

rather than something like this:

What gives? Character encoding? If so, what should I save my text file in?
回答1:
HTML Charset Encoding: UTF-8. That way the browser will render it correctly.
<meta charset="utf-8">
Place that right after <head>
来源:https://stackoverflow.com/questions/7873290/hebrew-text-in-html-files