Questions tagged [windows-1255]

Windows-1255 is a code page used under Microsoft Windows to write Hebrew.

Windows-1255 is a code page used under Microsoft Windows to write Hebrew.

25 questions
0
votes
0 answers

HTML charset encoding in Notepad++ issue saving in Windows-1255

I try to save an HTML page in Windows-1255, using Notaped++. I chose the relevant encoding (Encoding -> Character sets -> Hebrew -> Windows-1255) and defined the charset in the HTML header as: . but..it seems as if the…
0
votes
0 answers

PHP Convert string from ASCII to UTF-8 / WINDOWS-1255

This ASCII letter (MS-DOS Hebrew / CP862): € need to output this (UTF-8/Windows-1255): א Those methods give me no result so far: $string = "€"; echo iconv('CSPC862LATINHEBREW', 'Windows-1255', $string); echo iconv('CSPC862LATINHEBREW',…
Swissa Yaakov
  • 186
  • 3
  • 15
0
votes
1 answer

Gussing the text encoding from a UFT-8 BOM file in Java 6

I'm getting txt files in both Hebrew and Arabic with a UTF-8 BOM encoding. I need to convert them to a Windows-1255 or Windows-1256 depending on the content. How can I know, in runtime, the correct encoding to use? No luck with Mosilla…
0
votes
2 answers

Copy+pasting Hebrew text from PDF files results in final letters being incorrectly copied

So I got a few PDF files in Hebrew that I wanted to translate to English, and when trying to copy and paste the text from the PDF files into a text editor, all of the Hebrew final letters were incorrectly copied. I found this question but no…
Daniel
  • 631
  • 9
  • 20
0
votes
1 answer

How to import from a mixed-encoding file to a PostgreSQL table

I have a 30 GB text file. the encoding of the file is UTF8 but it also contains some Windows-1252 characters. So, when I try to import, it gives the following error: ERROR: invalid byte sequence for encoding "UTF8": 0x9b How can I fix this? the…
Ramin Zahedi
  • 455
  • 2
  • 6
  • 20
0
votes
0 answers

RLO unicode character not working for windows1255

Is there another character like \u202e that results in the same functionality - a right to left override that is supported in windows1255 as well? I've used \u202e so far but now, when sending a text to a system encoded with windows1255 the text…
user5326354
0
votes
0 answers

How to convert a std::string to windows-1255 bytes?

I have a function which receives a hebrew string and send it through a serial port (boost asio) to the device: void T::sendInfoMsg(std::string hebrewInfo) { std::vector msg{hebrewInfo.begin(), hebrewInfo.end()}; …
Irbis
  • 11,537
  • 6
  • 39
  • 68
0
votes
0 answers

viewing ????? on preview emailed sent webpage instead of hebrew

I have a problem when displaying page it show with ????? (question marks) instead of hebrew characters the data in the mssql table (html) is ok it is only happening in a new migration site to new hosting The site itself look perfect in hebrew.…
0
votes
1 answer

converting from windows-1255 to utf8 creates question marks for special chars

I have a string in hebrew which is encoded as windows-1255, passed with POST (by jquery AJAX) and then inserted into my DB which is encoded with "hebrew_general_ci". If i don't put the following code before the insert: mysql_query("SET NAMES…
Nir Tzezana
  • 2,275
  • 3
  • 33
  • 56
-1
votes
2 answers

convert rss encoding from windows 1255 to utf 8 node js

I am trying to parse hebrew rss like this one: http://rss.walla.co.il/?w=/3/0/12/@rss.e I am using feedparser and request, and the problem is that the encoding is windows-1255 and not UTF-8 so I see the text like: ����� ������� , and not like a…
nir
  • 11
  • 2
1
2