Rapid account: copy2sim

copy2sim / copy2sim

Tartışmalar

5
Title
Created at (Click to sort ascending)
A
4
FYI, I added a new field, which is called lunarYearinChinese, please refer to the tutorial for the explanation. ven 8:40 1/9/23
A
2
The value of lunarDateinChinese, in this case, is represented in Unicode as "\u4e94\u6708\u5341\u4e8c". To convert it into Chinese characters, you can utilize the following JavaScript code: <script> function convertUnicodeToChinese(unicode) { var codeArray = unicode.split("\\u"); var chinese = ""; for (var i = 0; i < codeArray.length; i++) { var code = codeArray[i]; if (code) { chinese += String.fromCharCode(parseInt(code, 16)); } } return chinese; } // Example usage var unicode = "\\u4e94\\u6708\\u5341\\u4e8c"; // Unicode representation of "五月十二" var chineseText = convertUnicodeToChinese(unicode); console.log(chineseText); </script> ven 2:10 18/8/23
A
4
I don't see your attachment. Anyway, here are the source code for python & js. Hope that helps. Python: https://drive.google.com/file/d/1P850m2IsemJw-YnTWxUA59Y86MQY965K/view?usp=sharing Js: https://drive.google.com/file/d/1CenagktVjnX69cJmdiVGxTc1-Hrduc2K/view?usp=sharing mar 4:03 11/4/23
A
4
I don't see your attachment. Anyway, here are the source code for python & js. Hope that helps. Python: https://drive.google.com/file/d/1P850m2IsemJw-YnTWxUA59Y86MQY965K/view?usp=sharing Js: https://drive.google.com/file/d/1CenagktVjnX69cJmdiVGxTc1-Hrduc2K/view?usp=sharing mar 4:03 11/4/23
A
4
I don't see your attachment. Anyway, here are the source code for python & js. Hope that helps. Python: https://drive.google.com/file/d/1P850m2IsemJw-YnTWxUA59Y86MQY965K/view?usp=sharing Js: https://drive.google.com/file/d/1CenagktVjnX69cJmdiVGxTc1-Hrduc2K/view?usp=sharing mar 4:03 11/4/23