Top "Ascii" questions

A character-encoding scheme based on the ordering of the English alphabet.

C# Random Password Generator

Here is the code: (passwordLengthBox is a NumericUpDown Box, r and k are random numbers) private void generateButton_Click(object …

c# random encoding ascii numericupdown
What is the use of '\b' (backspace)

I'm taking a Python class right now, and I just learned about the backspace character. Like newline (\n), backspace is …

ascii backspace
How do you generate passwords?

How do you generate passwords? Random Characters? Passphrases? High Ascii? Something like this? cat /dev/urandom | strings

random passwords ascii character passphrase
What is the idea behind ^= 32, that converts lowercase letters to upper and vice versa?

I was solving some problem on codeforces. Normally I first check if the character is upper or lower English letter …

c++ bit-manipulation ascii
Java: Convert String to packed decimal

new here! Situation: I'm working on a project which needs to communicate with an AS/400 server. My task is to …

java byte ascii ibm-midrange ebcdic
delphi - strip out all non standard text characers from string

I need to strip out all non standard text characers from a string. I need remove all non ascii and …

delphi parsing ascii delphi-2010 delphi-7
How to use vertical bars "|" (pipes) in a title, header as a string?

A page has the title "Systemadministrator (m/w) | Dresden". I use a vertical line (pipe) letter. When I render the …

pipe typo3 ascii letter
Does there exist unicode "New-Line" (Line-break), like there is unicode `space` ( )?

There are site where you can get Unicode characters, like unicode space, for example, you can copy-paste that. For example, …

string unicode utf-8 ascii ascii-art
Does . really match any character?

I am using a very simple sed script removing comments : sed -e 's/--.*$//' It works great until non-ascii …

sed ascii non-ascii-characters