JavaScript에서 charCodeAt() 메서드는 문자열 내 문자의 숫자 유니코드 값을 반환합니다. Go에서 동일한 기능을 얻으려면 다음 단계를 따르세요.
다음은 예제 코드 조각입니다.
<code class="go">package main import "fmt" func main() { str := "s" // Convert string to a slice of runes runes := []rune(str) // Get the Unicode value of the first character unicodeValue := runes[0] // Print the Unicode value fmt.Println(unicodeValue) // Print the character fmt.Printf("%c", unicodeValue) }</code>
이 코드는 유니코드 값(115)과 문자 's'를 인쇄합니다.
추가 참고 사항 :
문자 표현이 필요하지 않은 경우 string[index]를 사용하여 룬의 유니코드 값을 나타내는 int32에 직접 액세스할 수 있습니다. 이는 Go에서 룬이 int32의 별칭이기 때문입니다.
위 내용은 Go에서 문자의 유니코드 값을 어떻게 얻나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!