[Swift] Ascii to String / String to Ascii / 아스키코드 변환 / 아스키 값 변환 / 아스키 / ASCII
2022. 7. 12. 14:00ㆍ🍏/Swift
// String to Ascii
let ch = "C"
let asciiIntValue_C = Int(UnicodeScalar(ch)!.value)
let asciiIntValue_A = Int(UnicodeScalar("A").value) // 0x41, 65(d)
// Ascii Int Value to String
let result = String(UnicodeScalar(asciiIntValue_A)!)
print(asciiIntValue_C)
print(asciiIntValue_A)
print(result)
'🍏 > Swift' 카테고리의 다른 글
[Swift] 자동 참조 카운트 / ARC / Auto Referencing Counter (0) | 2022.08.26 |
---|---|
[Swift] Swift / 언어 (0) | 2022.08.16 |
[Swift] 배열에 모든 배열이 포함되는지 확인 하는 법. (0) | 2022.07.01 |
[Swift] 함수간 걸린시간 측정 / 실행 시간 / 코드 실행 시간 측정 (0) | 2022.06.14 |
[Swift] Int array to Int / Int array to String / 정수형 배열 정수형으로 변환 / 정수형 배열 문자형으로 변환 (0) | 2022.04.27 |