Documentation
Usage
convertQwertyToAlphabet

convertQwertyToAlphabet

Converts English alphabets into Korean phonemes that correspond to the QWERTY keyboard layout.

function convertQwertyToAlphabet(word: string): string;

Examples

convertQwertyToAlphabet('abc'); // 'ㅁㅠㅊ'
convertQwertyToAlphabet('ABC'); // 'ㅁㅠㅊ'
convertQwertyToAlphabet('vm론트'); // 'ㅍㅡ론트'
convertQwertyToAlphabet('RㅏㄱEㅜrl'); // 'ㄲㅏㄱㄸㅜㄱㅣ'

Demo