English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Here in this page: http://spanish.typeit.org/ are buttons that allows you to write text on a text area. But there are missing more special caracters for the Spanish language. Can you create the same page with another code? Because the code of that page is protected and no wonder I could'nt edit it in my computer.

2006-12-11 12:48:13 · 2 answers · asked by keilita 2 in Computers & Internet Programming & Design

2 answers

If you have microsoft word installed on your PC you can access special symbols and characters.

From the menu click INSERT then Click SYMBOLS

A popup will appear with a couple of drop down boxes listing groups of symbol types.

2006-12-11 14:18:57 · answer #1 · answered by MarkG 7 · 1 0

I had no problems seeing the source code to that page. If you aren't using Firefox, you should be ;-)

Here are the codes to those spanish chars:

//A
lower[65] = "\u00E1";
upper[65] = "\u00C1";
//E
lower[69] = "\u00E9";
upper[69] = "\u00C9";
//I
lower[73] = "\u00ED";
upper[73] = "\u00CD";
//N
lower[78] = "\u00F1";
upper[78] = "\u00D1";
//O
lower[79] = "\u00F3";
upper[79] = "\u00D3";
//U
lower[85] = "\u00FA\u00FC";
upper[85] = "\u00DA\u00DC";
//?
lower[191] = "\u00BF";
upper[191] = "\u00BF";
//!
lower[49] = "\u00A1";
upper[49] = "\u00A1";
//-
lower[189] = "\u2014";
upper[189] = "\u2014";


They are using the unicode for them.

Hope this helps.

2006-12-11 21:21:06 · answer #2 · answered by RGB_Mars 3 · 0 0

fedest.com, questions and answers