1
Chrome의 de-DE 로켈에서 32 대신 char 코드 160을 사용하는 이유는 무엇입니까?
const EUR = new Intl.NumberFormat("de-DE", { style: "currency", currency: "EUR" })
const a = EUR.format(1)
console.log(a)
//"1,00 €"
console.log(a.charCodeAt(4))
//160
왜 크롬에 해제 DE 로케일 문자 코드 (160) 대신 32을 사용합니까?