def fuzzy_korean_ratio(str1: str, str2: str) -> int: """Fuzzy Search with Korean.""" return fuzz.ratio( normalize_korean_nfc_to_nfd(str1), normalize_korean_nfc_to_nfd(str2), )