Documentation
Usage
convertQwertyToHangul

convertQwertyToHangul

Converts English alphabets into Korean characters and sentences corresponding to the QWERTY keyboard layout.

function convertQwertyToHangul(word: string): string;

Examples

convertQwertyToHangul('abc'); // '뮻'
convertQwertyToHangul('ABC'); // '뮻'
convertQwertyToHangul('vm론트'); // '프론트'
convertQwertyToHangul('RㅏㄱEㅜrl'); // '깍뚜기'

Demo