Skip Header
Teaching and Learning with Technology
Computing With Accents and Foreign Scripts
TLT Home : TLT Suggestions Skip Menu

Hebrew

This Page

  1. About the Hebrew Script
  2. Activate Keyboards for Typing
  3. Browser and Font Recommendations
  4. Typing Right-To-Left (RTL) Languages in Word for Windows New Page
  5. Typing Right-To-Left (RTL) Languages on the Mac New Page
  6. Web Development
    1. Language Codes: he (Hebrew), yi - (Yiddish), ly - (Ladino/Judeo-Spanish)
  7. Hebrew Unicode Chart (New Page)
  8. Links

About the Hebrew Script

The Hebrew script is written right to left and can include diacritics to specify vowel marks, but these markes are often ommited in Modern Hebrew. In order to process Hebrew correctly, software must be able to display text from right to left and include vowel marks as needed.

Note that the Hebrew script is used for other Jewish community languages, particularly Yiddish (which includes additional characters). See Jewish Languages for details on other languages written in the Hebrew alphabet.

Note: Modern Hebrew is sometimes called Ivrit, a form closer to the actual pronuciation of עברית "Hebrew"

Top of Page

Activate Keyboards for Fonts

Basic Setup

In order to integrate foreign scripts into your computer, you must set up "keyboard" utilities in your operating system. Keyboards will allow you to switch between typing English and other languages in word processors and Web tools. This process will also make sure the correct fonts are installed are availble for Windows or Macintosh.

Windows

Global Writer (Student Computing Labs)

As of Spring 2005, the international word processor Global Writer is available in the Student Computing Labs. This allows users to easily switch keyboards, including phonetic keyboards which mimic a QWERTY keyboard.

CLC Student Computing Labs: To open Global Writer, go to the Start » Internatinal Language Support » Unitype Global Writer.

Global Writer is available from Unitype for personal purchace.

Microsoft Keyboard Utilities

Microsoft provides a variety of free keyboard utlities, but they must be installed from the disk, then activated from the Regional Control Panel.

Step 1 - Install Utilities

Student Computing Labs - The utilities are installed in the University Park Student Computing Labs, but students must install the utlities by going to the Start menu then International Language Support » Microsoft » Office Microsoft Office Asian Character Input Support.

Home Computers - Several Asian and Middle Eastern keyboards are available in Windows, but you may have to install it from the Windows System disk because it is a complex script. After that you can activate the keyboards from the Regional Control Panel.

See Windows East Asian and Complex Script Keyboards for detailed instructions with screen captures.

Step 2 - Activate from Control Panel

Once the keyboards have been installed, they must be activated in the Regional Control Panel. Read the summary instructions below or go to East Asian and Complex Scripts Keyboards for detailed instructions with screen captures.

  1. Go to Start then Control Panels then Regional and Language Options. Follow the instructions for Activating the Language Bar
  2. While in the Regional and Language Options control panel, click on the Languages tab, then the Details button.
  3. Click the Add button and select the appropriate language from the Input Language pull down menu.
  4. Click the OK buttons until you have exited the control panels - this will save the changes in your Profile.
  5. Open any Windows application then make sure the Language Bar menu on top is set to the correct language.
[an error occurred while processing this directive]

Right to Left Typing in Word for Windows

See instructions for configuring right to left typing in Word for Windows for tips on how to type RTL languages.

Macintosh

Student Computing Labs

A Hebrew and QWERTY Hebrew keyboard are available in Macintosh, but you may have to install it from the Macintosh System disk because it is a complex script.

Student Computing Labs - Many language keyboards have been activated in the labs and are available through the flag menu on the upper right. Skip to Step #4 in the instructions below.

Home Computers - A variety of keyboards are available from Apple, but you may have to install it from the Macintosh System disk then they can be activated through the International System Preferences. See details below.

To Use Keyboards

  1. Go to the Apple menu and open Systems Preferences.
  2. Click the International icon on the first row of the Systems Preferences panel.
  3. Click the Input Menu or the Keyboard Menu (OS X 10.2) tab and check the keyboards you want activated.
  4. Open a software application such as a word processor, spread-sheet or any other application in which you need to enter text.
  5. On the upper right portion of the screen, click on the American flag icon (U.S. Flag Icon). Use the dropdown menu to select a script or language.
  6. The keyboard will be switched and an appropriate font will be selected within the application. A flag icon corresponding to the keyboard will be displayed on the upper right.
  7. To switch back to the U.S. keyboard or to some other keyboard, click on the flag icon on the upper right and select a keyboard from the dropdown menu.

See the Macintosh Keyboard Activation for complete instructions with screen captures.

Additional Macintosh RTL Tips

See tips for creating Mac Right-to-Left documents (including alternatives to Microsoft Office) for more information.

Top of Page

Browser and Font Recommendations

Test Sites

If you have your browser configured correctly, the Web sites above should display the correct characters. If you have difficulties, see list below for font and browser configuration instructions.

www.snunit.k12.il (israeli Education Site)

Fonts by Platform

Additional freeware fonts can be downloaded from from the sites below. All fonts include vowel points and many include Yiddish characters.

Recommended Browsers

Browsers which fully support Unicode are the strongly recommended. Click link in list to view configuration instructions. You will be asked to match a script with a font.

See also

Manually Switch Encoding

If you see Roman character gibberish instead of Hebrew you will need to manually switch from Western encoding view to the Hebrew or Unicode encoding under the View menu of your browser.

Top of Page

Web Development

Hebrew Encoding and Languge Tags

These are the codes which allow browsers and screen readers to process data as the appropriate language. All letters in codes are lower case.If you are desigining a new page, Unicode encoding is recommended since it supports the most characters.

Selected Language Tags

Encoding

Logical Hebrew/Unicode vs. Visual Hebrew

Logical Hebrew (iso-8859-8-i) is preferred to Visual Hebrew (iso-8859-8) because it maintains the proper text flow. Visual Hebrew requires developers to input the text backward. If either Unicode or Logical Hebrew are used, then text can be inputted in sequential order and the browser will display the content from left to right.

 

Using Encoding and Language Codes

Computers process text by assuming a certain encoding or a system of matching electronic data with visual text characters. Whenever you develop a Web site you need to make sure the proper encoding is specified in the header tags; otherwise the browser may default to U.S. settings and not display the text properly.

To declare an encoding, insert or inspect the following meta-tag at the top of your HTML file, then replace "???" with one of the encoding codes listed above. If you are not sure, use utf-8 as the encoding.

Generic Encoding Template

<head>
<meta http-equiv="Content-Type" content="text/html; charset=??? ">
...
<head>

Declare Unicode

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8 ">
...
<head>

XHTML

The final close slash must be included after the final quote mark in the encoding header tag if you are using XHTML

Declare Unicode in XHTML

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
...
<head>

No Encoding Declared

If no encoding is declared, then the browser uses the default setting, which in the U.S. is typically Latin-1. In that case many Unicode characters could be displayed incorrectly. Also, older browsers such as Netscape 4.7 may not be able to process the entity codes correctly without the "utf-8" declaration.

Language Tags

Language tags are also suggested so that search engines and screen readers parse the language of a page. These are meta data tags which indicate the page of a language, not devices to trigger translation. Visit the Language Tag page to view information on where to insert it.

Specifying Text Direction

Some HTML editors set the direction automatically, but it can also be set manually using the new <dir> and <bdo> attributes. See the Right-to-Left Alignment tips page for more details.

Inputting and Editing Text

One option is to use FrontPage, Netscape/Mozilla Composer or Dreamweaver and change the keyboard to the correct script.  Make sure you specify the encoding in the Web page header.

Another option is to compose the basic text in an international or foreign languags text editor or word processor and export the content as an HTML or text file with the appropriate encoding. This file could be opened in another HTML editor such as FrontPage or Dreamweaver an edited for formatting.

Using Unicode Escape Characters

If you wish to input a word or short phrase, you can use Unicode entity codes. See the Hebrew Unicode Chart to view hexadecimal code points for Hebrew and other Jewish languages.

Specifying Text Direction

Some HTML editors set the direction of the text automatically. but it can also be set manually by using the newer <dir> and <bdo> attributes. See the Right-to-Left Alignment Tips page for more details.

PDF and Image Files

In some cases, your best options may be to use PDF files or image files. See the Web Development Tips section for more details.

Top of Page

Links

Hebrew Computing

Windows

Macintosh

Linux/Unix

User Group

Yiddish Computing

Biblical Hebrew

Hebrew Writing

Script Basics

Additional Fonts

Includes vowel marks, Yiddish and Biblical Hebrew

Web Development Tips

Tex Texin Hebrew Articles

Other Articles

Create Right To Left Web Pages

These Web sites provide additional information on developing Right-to-Left Pages.

 

Top of Page

©Penn State University, 2000-2007.
This Web page maintained by Teaching and Learning with Technology, a unit of Information Technology Services. For questions or comments on this Web page, please contact Elizabeth J. Pyatt (ejp10@psu.edu).
Unicode character names and hexadecimal entity codes are taken from the public Unicode Character Charts.
Last Modified: Friday, 27-Jun-2008 14:46:35 EDT