>  기사  >  백엔드 개발  >  Windows 콘솔에서 UTF-8 문자열을 올바르게 표시하는 방법은 무엇입니까?

Windows 콘솔에서 UTF-8 문자열을 올바르게 표시하는 방법은 무엇입니까?

DDD
DDD원래의
2024-11-02 21:55:30512검색

How to Display UTF-8 Strings Correctly in Windows Consoles?

Windows 콘솔 표시용 UTF-8 문자열 인코딩

Windows 콘솔에서 Go 실행 파일을 실행할 때 특수 문자가 포함된 문자열이 나타날 수 있습니다. 콘솔의 기본 IBM850 인코딩으로 인해 손상되었습니다. 문자열이 올바르게 인코딩되고 표시되는지 확인하는 방법은 다음과 같습니다.

해결책:

kernel32.dll 라이브러리의 WriteConsoleW 함수를 활용하여 와이드 문자(UTF-16)를 작성합니다. ) 문자열을 콘솔에 직접 전송하여 기본 인코딩을 우회합니다.

구현:

<code class="go">import (
    "syscall"
    "unicode/utf16"
    "unsafe"
)

// Declare the WriteConsoleW function
var procWriteConsoleW = syscall.NewLazyDLL("kernel32.dll").NewProc("WriteConsoleW")

// Define a function to print a UTF-8 string to the console
func consolePrintString(strUtf8 string) {
    // Convert the UTF-8 string to UTF-16
    strUtf16 := utf16.Encode([]rune(strUtf8))

    // Write the UTF-16 string to the console
    syscall.Syscall6(procWriteConsoleW.Addr(), 5,
        uintptr(syscall.Stdout),
        uintptr(unsafe.Pointer(&strUtf16[0])),
        uintptr(len(strUtf16)),
        uintptr(unsafe.Pointer(nil)),
        uintptr(0),
        0)
}</code>

예:

<code class="go">package main

import "fmt"

func main() {
    consolePrintString("Hello ☺\n")
    consolePrintString("éèïöîôùòèìë\n")
}</code>

이 접근 방식은 콘솔의 기본 인코딩을 우회하여 특수 문자가 포함된 문자열이 올바르게 표시되도록 합니다. 이는 Windows에만 해당되며 문서화되지 않은 방법을 사용한다는 점에 유의하세요.

위 내용은 Windows 콘솔에서 UTF-8 문자열을 올바르게 표시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.