There are some old code in ASCII doc. For example
/* main process
┌─┐ ┌─┐ ┌─┐
│A├─>│B├─>│C│
└─┘ └─┘ └─┘
*/
I want to convert it from ascii to utf-8.
I’ve tried uni2ascii, but failed.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Let’s be precise: the ASCII character set does not include those line-drawing characters. Your file is using some other character set. You need to figure out what character set (or “code page”) your file was written for. Then you can use a utility like
iconvto convert it to UTF-8.For example, if it was written for code page 437, you can convert it to UTF-8 like this: