1,142
questions
0
votes
0
answers
30
views
Using PD4ML not able to render few Chinese characters in PDF
I am trying to generate the PDF using PD4ML but while rendering it few Chinese characters are appearing as ? in output file.
Below is code snippet for reference through which I am generating PDF.
try {...
0
votes
0
answers
79
views
How to extract clean japanese text from the pdf folder in python
This is my code
import os
import PyPDF2
# set the directory where the PDF files are located
pdf_directory = '/Users/humnerohit/Desktop/test_pdf_files'
# loop through each file in the directory
for ...
1
vote
0
answers
29
views
Geocoding - Japanese address start to timeout without url encoding from 12th Oct 2024
Here is example of call from Golang without url encoding.
https://maps.googleapis.com/maps/api/geocode/json?address=大田区北千束3丁目&key=xxxx(please change to key)
Above was returning result until 11th ...
0
votes
1
answer
41
views
Which font/setting to correctly display U+2E976 in Firefox and everywhere in Linux [closed]
I'm trying to figure out which font I have to install to be able to see the characters on this page:
https://en.wiktionary.org/wiki/%F0%AE%A5%B6#Chinese
𮥶 which is U+2E976
I'm on Linux Mint. I've ...
0
votes
0
answers
25
views
Download pdf in Japanese shows garbled text on production for rails application using Wickedpdf gem, working perfectly fine locally
Here is the issue in the screenshot
I have tried multiple things:
I have tried to download the Japanese fonts locally on the production server
Added this in the pdf layout:
<!DOCTYPE html>...
1
vote
1
answer
81
views
Making a user-friendly input for subdividing a square into coordinates
I am working on a program (in Python) that involves cutting a square(s) into smaller pieces.
The user has to enter a 'code', which the program will automatically convert into the coordinates for each ...
0
votes
0
answers
114
views
How to convert a column of Japanese words in a column of Hiragana words in Excel
I have a large column of Japanese words (some are entirely in hiragana, katakana or kanji, some are a mix of kanji and hiragana, and some are a mix of kanji and katakana), and I would like to convert ...
3
votes
1
answer
72
views
Regex for Parsing Japanese Parliamentary Speeches in Python
I'm a beginner in Python and am working on a project to preprocess Japanese text data for argument mining. I need to extract metadata (e.g., parliamentary session, date, speaker) and the speech ...
1
vote
0
answers
42
views
Gluon Javafx textfield cannot input Chinese/Japanese/Korean characters on IOS
I am developing an iOS application using Gluon Mobile but have encountered a problem. When a TextField gains focus, the keyboard pops up, but this keyboard is different from the one configured in the ...
0
votes
1
answer
54
views
How to get the unicode of a character in Python? [duplicate]
Wanna get the unicode of chinese or vietnamese's han-nom and japanese characters
I've tried these code
text = "𬖰";
br = text.encode("unicode-escape");
print(br);
and got
b'\\...
0
votes
1
answer
46
views
Decoding multibyte non-Unicode characters through codecvt fails
I have experimented with std::codecvt on MSVC and encountered an issue with multibyte character encodings ‒ it cannot convert back from valid multibyte sequences, even when those can be produced when ...
0
votes
0
answers
21
views
clear IME input onfocus in Javascript
Currently I'm having problems with IME.
I am designing a chat and messaging application with Vue3. I use a div with :editcontenable="true" as input. Everything was ok but there was a problem ...
1
vote
1
answer
51
views
MeCab doesnt seem to return correct response
So i just installed MeCab and tried to run it in node.
i took example from this url https://github.com/hecomi/node-mecab-async#readme to check if i installed it properly but i guess something went ...
0
votes
0
answers
18
views
Using Limelight with WordPress
I want to install Limelight on WordPress to to add some Japanese language features such as kana converter, Japanese to romaji converter etc. However, GitHub only describes how to install it, and does ...
0
votes
0
answers
28
views
Image-to-Hanzi library
I'm trying to create an 'ascii' (unicode, but you know) image renderer with higher fidelity for terminals.
You can see most current implementations treat each textual character as a pixel, which ...