About 50 results
Open links in new tab
  1. How exactly does binary code get converted into letters?

    Jul 26, 2011 · 40 Out of curiosity, how exactly does binary code get converted into letters? I know there are sites that automatically convert binary to words for you but I wanna understand the specific, …

  2. Is there any logic behind ASCII codes' ordering? [closed]

    There are historical reasons, mainly to make ASCII codes easy to convert: Digits (0x30 to 0x39) have the binary prefix 110000: 0 is 110000 1 is 110001 2 is 110010 etc. So if you wipe out the prefix (the …

  3. Challenge #15: Mystery Alphabet Decoder [COMPLETED]

    Apr 14, 2026 · Update on February 13, 2026: Thanks to everyone who participated in Challenge 15! The correct output for the alien alphabet is: ⪏⊚⊕⊟⊞⨙⊛∭↔⊠⊝৲⊣⊗⇲⊥⊢ ⊡⊤ ⚆⊜↪ 87 users got the …

  4. Convert binary to ASCII and vice versa - Stack Overflow

    Sep 13, 2011 · Then you divide the string up into blocks of eight binary digits, convert them to ASCII characters, and join them back into a string: ... If you actually want to treat it as a number, you still …

  5. How to convert alphabet to binary? - Stack Overflow

    Jan 14, 2015 · How to convert alphabet to binary? I search on Google and it says that first convert alphabet to its ASCII numeric value and than convert the numeric value to binary.

  6. How to get ASCII cyrillic character code in Python?

    7 You can't; there are no Cyrillic characters in ASCII. The chart you've shown is for one of the many "extended ASCII" character sets; specifically, it appears to be Windows-1251 (a.k.a. CP1251). In …

  7. Printing int using putchar () in C - Stack Overflow

    Sep 15, 2022 · Because in C, a single-quoted character literal has a numeric value equal to its ASCII code, so '0' is just another way to write 48, but has the advantage of not requiring you (or a future …

  8. Converting Binary to text using JavaScript - Stack Overflow

    How can I convert Binary code to text using JavaScript? I have already made it convert text to binary but is there a way of doing it the other way around? Here is my code: function convertBinar...

  9. base64 - What is base 64 encoding used for? - Stack Overflow

    Oct 14, 2008 · 136 It's a textual encoding of binary data where the resultant text has nothing but letters, numbers and the symbols "+", "/" and "=". It's a convenient way to store/transmit binary data over …

  10. Adding binary secret data to a Helm chart - Stack Overflow

    Mar 7, 2023 · I am trying to create a Helm chart for a service that has binary secrets. Currently, we import those secrets using kubectl: kubectl create secret generic my-secret --from …