
IntlChar::isMirrored 함수는 Unicode 문자를 반전된 문자인지 확인하는 함수입니다. 이 함수는 다음 경우에 true를 반환합니다.
- Unicode의 Bidirectional Category가 "M" (Mirror Symmetric) 인 문자
- Unicode의 Bidirectional Category가 "S" (Strong) 인 문자가 "L" (Left-to-Right) 인 문자와 함께 사용되었을 때
- Unicode의 Bidirectional Category가 "WS" (Weak Shims) 인 문자가 "L" (Left-to-Right) 인 문자와 함께 사용되었을 때
예를 들어, "A"는 Unicode의 Bidirectional Category가 "L" (Left-to-Right) 인 문자이므로 IntlChar::isMirrored 함수는 false를 반환합니다.
2025-07-12 20:26