코딩Coding/★Rust★기초★Syntax

Rust]유니코드 출력하는 방법 Unicode print

내인생PLUS 2022. 4. 14. 22:41
728x90

Rust 로 유니 코드 출력하는 방법 되게 쉽다 ㅋㅋㅋ

// unicode print
fn main() {
    println!("\u{1f640}");
    println!("\u{1f63b}");
}

결과
Running `target/debug/testrust`
🙀
😻




출처 :
프로그래밍 언어 러스트를 배웁시다! 147 Easy Rust in Korean: Std library tour 1
https://youtu.be/BIB15R0_yHI









rust연습]10진수 숫자 16진수로 알아보는 방법& 16진수를 10진수 숫자로 알아보는 방법 -
https://economiceco.tistory.com/m/13283

rust연습]10진수 숫자 16진수로 알아보는 방법& 16진수를 10진수 숫자로 알아보는 방법

10 진수 숫자 16진수로 알아보는 방법 fn main() { let i = 128150; println!("{i:x?}"); } 결과 1f496 16 진수 숫자 10 진수로 알아보는 방법 use std::i64; fn main() { let z = i64::from_str_radix("1F496", 1..

economiceco.tistory.com








반응형