Although modern Vietnamese is written in the Roman alphabet, it inclludes many additional accents for marking tones and requires special font and keyboard support separate from languages like Spanish and French. It also has a number of accented vowels to mark tones, so requires about the same level of complexity to support as other East Asian languages.
Note: Charaters specific to Vietnamese are in the Latin Extended B block. Any font supporting this block supports Vietnamese.
Please note which fonts are needed for each platform before viewing instructions to configure your browsers in the Preferences or Tools menu. Most browsers are recommended, but older browsers like Netscape 4.7 may need more adjustments.
These freeware fonts include Vietnamese extensions. Many fonts with extended Latin character sets may also support Vietnamese.
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.
NOTE: The following test Web sites were selected randomly. They are in no way endorsed or critiqued by Penn State.
Test Web Site - www.tti-us.com/uvn/products.htm (Commercial Vietnamese Fonts)
If you have your browser configured correctly, the Web sites above should display Vietnamese letters.
Manually Switch Encoding
If you see some unusual letters instead of the appropriate Turkish letters, you will need to manually switch from Western encoding to one of the Turkish encodings or Unicode under the View menu of your browser.
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.
Microsoft provides a variety of free keyboard utlities, but they must be installed from the disk, then activated from the Regional Control Panel.
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 Keyboards for detailed instructions with screen captures.
Once the keyboards have been installed, they must be activated in the Regional Control Panel. Read the summary instructions below or go to Windows East Asian Keyboards for detailed instructions with screen captures.
You can also use the Character Map to insert the characters you need.
If you are working with a Unicode aware application such as Microsoft Office 2004, Text Edit (free with OS X ), Dreamweaver or Mozilla Composer you can activate the Macintosh keyboard for Vietnamese.
See Greisser Software Vietnamese Fonts on a Macintosh for details.
For print work, there are a number of freeware and shareware fonts for Vietnamese. You can check the Summer Institute for Linguistics Fonts in Cyberspace for more details.
For the Web, you can use the Unicode numeric codes for Vietnamese.
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 creating a new page, Unicode is recommended since it will also allow for support of other Asian languages on the same page.
See Using Encoding and Language Codes for more information on the meaning and implementation of these codes.
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.
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>
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>
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 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.
See the Viet Unicode Chart for the specific codes. Note that codes are given in hexadecimal format, so require the &#x notation. For instance the Unicode value for a with breve and hook (Ẳ) is 1EB2. Therefore the entity code would be Ẳ.
Be sure the appropriate Encodings and Language Tags are used.
