ParseInt this Symbol | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

ParseInt this Symbol

 <-- how to find the bit configuration for this symbol (even in a decimal or hexadecimal form)? or isn't it a char? I need to check if it is present in a string. Any suggestion for resolving this?

28th Oct 2018, 10:20 PM
Daniel Bandeira
Daniel Bandeira - avatar
5 Answers
+ 4
https://code.sololearn.com/WYCTOysAGnLv/#html Put this into the "Expression" input at the top: "".charCodeAt(0) The value will be 65532 (*note), and the INTERNAL (IEEE-754) float representation (bits and hex) are shown in the middle boxes. edit: Using parseInt (EXTERNAL representation) they're : alert(parseInt("".charCodeAt(0)).toString(2)); // binary alert(parseInt("".charCodeAt(0)).toString(16)); // hexadecimal * Note, 0xfffc (65532) is the Unicode replacement character for encoding errors (it's corrupt). ref: https://www.fileformat.info/info/unicode/char/fffc/index.htm .
28th Oct 2018, 11:02 PM
Kirk Schafer
Kirk Schafer - avatar
+ 3
Use codePointAt() method, which returns a non-negative integer Unicode code point value. eg: document.write(String.fromCodePoint(65532, 9731, 9733, 9842, 0x2F804)); // expected output: "☃★♲你" document.write("<br><br>"); var icons = '☃★♲'; document.write(icons.codePointAt(0)); // expected output: "65532"
28th Oct 2018, 11:18 PM
Suraj Jha
Suraj Jha - avatar
+ 2
Incrible code, Kirk Schafer! Suraj, that is what I was looking for! thank you 2!!!
28th Oct 2018, 11:33 PM
Daniel Bandeira
Daniel Bandeira - avatar
+ 2
my brain exploded looking at that
29th Oct 2018, 3:21 AM
Jason Kennedy
+ 1
[note] Edited to clarify internal vs external representation of IEEE-754 floats after reviewing what was desired. Daniel Bandeira Just FYI, the "Best Answer" checkmark for Suraj's answer will help sort it first + my 'informational' answer below it + send some additional XP their way :)
29th Oct 2018, 4:08 PM
Kirk Schafer
Kirk Schafer - avatar