Questions tagged [hebrew]

The Hebrew language is written right to left (RTL), much like Arabic and Farsi, requiring special handling when mixing Roman numerals and Latin characters in order to maintain correct flow.

Questions in this tag must be posted in English, but examples can be given using Hebrew characters when relevant
!השאלות צריכות להיות באנגלית

Hebrew is a language of the Semitic branch of the Afro-Asiatic languages that, in modern and ancient forms, is an official language of Israel and a language in which much of the scriptures of Jews and Christians are written in. Hebrew is also a 22 letter consonant-only alphabet used for the Hebrew and other languages.

The Hebrew language is written right to left (RTL), much like Arabic, Farsi, Urdu, and Yiddish, requiring special handling when mixing Roman numerals and Latin characters in order to maintain correct flow. Hebrew also supports accents (Te'amim) and points (Nikkud) that may be displayed differently based on the preceding letters.

In UTF-8, Hebrew characters begin at U+0591 and end at U+05F4 (including punctuation and Yiddish).

In ASCII Hebrew can use several codepages, with the most common being cp1255 (windows-1255), followed by cp8859-8 and, less common, cp862.

Tag Usage

Use this tag for:

  • Any question relating to technical uses for Hebrew in computerized systems, conversions of different charsets, inputting, outputting, processing, or displaying Hebrew characters, and the like.
    • Users should also consider looking into other localization tags such as [rtl] and [utf-8] as many Hebrew problems are not unique to Hebrew but are localization related in general.

Do not use this tag for:

  • General questions about the Hebrew language or alphabet (off-topic).
  • Questions about learning or studying Hebrew (off-topic).
  • Requests for translation assistance between Hebrew and any other language (off-topic).
  • Questions written in Hebrew (Stack Overflow requires that questions be written in English).
723 questions
-2
votes
1 answer

How to strip a hebrew string from its vowels?

Im developing an app using vowels in hebrew. for example, חָלָק wanted ouput: חלק to remove it, I found this nice function.. good luck. const stripVowels = rawString => rawString.replace(/[\u0591-\u05C7]/g, '').trim();
-2
votes
2 answers

Python convert gibbrish to hebrew

here is my code: # -*- coding:…
itai12345
  • 15
  • 1
  • 4
-3
votes
1 answer

Convert numbers to words in Hebrew

I've been trying to find a working algorithm for converting numbers into Hebrew words (e.g. 10,250 = עשרת אלפים, מאתיים חמישים), but no luck so far. The conversion of numbers to words in Hebrew is very much different than in English. Can you provide…
avi12
  • 37
  • 1
  • 7
1 2 3
48
49