You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
776 B
25 lines
776 B
3 years ago
|
# string_to_Unicode_codepoint
|
||
|
## Get Unicode codepoints of provided string`s chars
|
||
|
|
||
|
---
|
||
|
|
||
|
# Compilation (you`ll need [Rust](https://www.rust-lang.org/tools/install) installed)
|
||
|
- `cd` into the project folder
|
||
|
- `cargo build --release`
|
||
|
|
||
|
Compiled binary file will be in `./target/release/` directory
|
||
|
|
||
|
---
|
||
|
|
||
|
# Usage
|
||
|
`./string_to_Unicode_codepoint SOME_TEXT_OR_ᗜˬᗜ_ȿन頿⍅獅_FANCY_CHARS_HERE`
|
||
|
`./string_to_Unicode_codepoint "SAME AS BEFORE, BUT NOW YOU CAN ADD SPACES !"`
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
- `./string_to_Unicode_codepoint "ᗜˬᗜ is actually 15DC 02EC 15DC !"`
|
||
|
- `./string_to_Unicode_codepoint "You can print it by pressing ctrl+shift+u+CODEPOINT_HERE"`
|
||
|
- `./string_to_Unicode_codepoint "ɖ࠴ɴܣͲঙȴ" > outputFile.txt` - to save the output in a file (on Unix OSs)
|
||
|
|
||
|
---
|