module UnicodeNormalize

def self.nfd_one(string)

# Normalization Forms for Patterns (not whole Strings)
def self.nfd_one(string)
  string = string.chars.map {|c| DECOMPOSITION_TABLE[c] || c}.join('')
  canonical_ordering_one(hangul_decomp_one(string))
end